Files
pest/stubs/init-laravel/Feature/ExampleTest.php
2023-03-17 10:28:50 +00:00

8 lines
129 B
PHP

<?php
it('returns a successful response', function () {
$response = $this->get('/');
$response->assertStatus(200);
});