dym-sh/tests/Feature/ExampleTest.php

8 lines
129 B
PHP
Raw Normal View History

2024-08-06 14:12:25 +02:00
<?php
it('returns a successful response', function () {
$response = $this->get('/');
$response->assertStatus(200);
});