TenantAtlas/apps/platform/tests/Feature/Filament/AdminSmokeTest.php
Ahmed Darrazi 185f2795c6
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m45s
feat: retire legacy tenant route surfaces
2026-05-13 01:31:46 +02:00

15 lines
396 B
PHP

<?php
use App\Support\ManagedEnvironmentLinks;
uses(Illuminate\Foundation\Testing\RefreshDatabase::class);
test('authenticated tenant member can load the managed-environment registry', function () {
[$user, $tenant] = createUserWithTenant();
$this->actingAs($user)
->get(ManagedEnvironmentLinks::indexUrl($tenant))
->assertOk()
->assertSee($tenant->name);
});