fanatic/tests/Feature/SessionsTest.php
2022-04-25 10:27:39 -07:00

14 lines
348 B
PHP

<?php
use App\Models\Collective;
test('dashboard hidden for guests', function () {
$response = $this->get('/fanatic');
$response->assertRedirect('/fanatic/login');
});
test('logs in', function () {
$user = Collective::first();
$response = $this->actingAs($user)->get('/fanatic');
$response->assertViewIs('admin.dashboard');
});