TenantAtlas/apps/platform/tests/Feature/Filament/LivewireInterceptShimIsLoadedTest.php
2026-04-08 09:33:16 +02:00

10 lines
261 B
PHP

<?php
it('loads the Livewire intercept shim on the Filament login page', function () {
$response = $this->get('/admin/login');
$response
->assertSuccessful()
->assertSee('js/tenantpilot/livewire-intercept-shim.js', escape: false);
});