urlsnail/tests/Feature/ExampleTest.php

8 lines
129 B
PHP
Raw Permalink Normal View History

2024-05-24 20:07:22 +00:00
<?php
it('returns a successful response', function () {
$response = $this->get('/');
2024-05-24 20:07:22 +00:00
$response->assertStatus(200);
});