12-05-2026 Frontend dev
This commit is contained in:
parent
405df0a122
commit
5b8bdf4182
779 changed files with 480564 additions and 6241 deletions
14
tests/Feature/Admin/PortalAssetManifestTest.php
Normal file
14
tests/Feature/Admin/PortalAssetManifestTest.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
use App\Models\User;
|
||||
use Tests\TestCase;
|
||||
|
||||
test('admin portal page renders with the portal vite manifest', function () {
|
||||
/** @var TestCase $this */
|
||||
$admin = User::factory()->superAdmin()->create();
|
||||
|
||||
$this->actingAs($admin)
|
||||
->get('https://presseportale.test/admin/companies')
|
||||
->assertSuccessful()
|
||||
->assertSee('Firmen');
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue