ekart/backend/tests/Feature/ExampleTest.php
2026-02-19 18:51:28 +05:30

8 lines
147 B
PHP

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