test-inertia-app/tests/Feature/ExampleTest.php
2025-11-07 13:36:00 -03:00

7 lines
129 B
PHP

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