scripthost/tests/Feature/ExampleTest.php
Javier Feliz 9b2b993418
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Setup
2025-07-22 17:49:01 -04:00

7 lines
130 B
PHP

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