TenantAtlas/tests/Feature/Filament/LivewireInterceptShimIsLoadedTest.php

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);
});