10 lines
166 B
PHP
10 lines
166 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
test('returns a successful response', function (): void {
|
|
$response = $this->get(route('home'));
|
|
|
|
$response->assertOk();
|
|
});
|