Files
weather/tests/Feature/ExampleTest.php
2026-01-07 12:20:47 -07:00

7 lines
130 B
PHP

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