Files
generic_table_examples/tests/Feature/ExampleTest.php
2025-03-12 00:41:31 -04:00

8 lines
129 B
PHP

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