Files
template-laravel/tests/Feature/ExampleTest.php
Gregory Letellier d5b3ccabd9 Init
2023-11-28 12:13:50 +01:00

8 lines
129 B
PHP

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