Files
SGS/www/tests/Feature/ExampleTest.php
T
Fabián Gonzalo Artur de la Villarmois 2579f561c3 Initial commit / First Release
2025-12-26 16:51:23 +13:00

8 lines
147 B
PHP

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