presseportale/tests/Feature/Admin/PortalAssetManifestTest.php
Kevin Adametz 0a3e52d603 19-05-2026 Rebrand Pressekonto, Hub-Flux UI und Legacy-Media-Migration
Umbenennung presseportale → pressekonto in Domains, Themes und Dokumentation.
Design-Tokens, Portal-Shell, Customer-Dashboard, Auth- und Admin-PM-Views.
Artisan-Befehl migrate:legacy-media mit Tests und Hub-Flux-Entwicklungsdocs.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-19 16:36:13 +00:00

14 lines
363 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://pressekonto.test/admin/companies')
->assertSuccessful()
->assertSee('Firmen');
});