presseportale/tests/Feature/Admin/PortalAssetManifestTest.php
Kevin Adametz 5b8bdf4182
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
12-05-2026 Frontend dev
2026-05-12 18:32:33 +02:00

14 lines
365 B
PHP

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