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>
14 lines
363 B
PHP
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');
|
|
});
|