19 lines
429 B
PHP
19 lines
429 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
use App\Models\User;
|
||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||
|
||
uses(RefreshDatabase::class);
|
||
|
||
it('renders the no access page for authenticated users', function () {
|
||
$user = User::factory()->create();
|
||
$this->actingAs($user);
|
||
|
||
$response = $this->get('/admin/no-access');
|
||
|
||
$response->assertOk();
|
||
$response->assertSee('You don’t have access to any tenants yet.');
|
||
});
|