7 lines
136 B
PHP
7 lines
136 B
PHP
<?php
|
|
|
|
test('returns a successful response', function (): void {
|
|
$response = $this->get('/');
|
|
|
|
$response->assertStatus(200);
|
|
}); |