Files
MKM/tests/Feature/ExampleTest.php
2024-07-25 13:35:51 +08:00

8 lines
129 B
PHP

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