TenantAtlas/tests/Feature/AdminNewRedirectTest.php
Ahmed Darrazi 7b0a383182 feat: unified managed tenant onboarding wizard
Implements workspace-scoped managed tenant onboarding wizard (Filament v5 / Livewire v4) with strict RBAC (404/403 semantics), resumable sessions, provider connection selection/creation, verification OperationRun, and optional bootstrap. Removes legacy onboarding entrypoints and adds Pest coverage + spec artifacts (073).
2026-02-03 18:27:39 +01:00

9 lines
168 B
PHP

<?php
declare(strict_types=1);
it('redirects /admin/new to /admin/login for guests', function (): void {
$this->get('/admin/new')
->assertNotFound();
});