refreshApplication(); } afterEach(function () { rebootWithShowcase(true); }); it('mounts the showcase when enabled', function () { $this->withoutVite() ->get('/material') ->assertOk() ->assertSee('Livewire Material'); }); it('does not mount the showcase when disabled', function () { rebootWithShowcase(false); $this->get('/material')->assertNotFound(); });