lernschiff/tests/Feature/ExampleTest.php

8 lines
143 B
PHP

<?php
it('redirects from root to dashboard', function () {
$response = $this->get('/');
$response->assertRedirect('/dashboard');
});