mirror of
https://github.com/notf0und/SGS
synced 2026-07-18 02:31:08 +00:00
8 lines
147 B
PHP
8 lines
147 B
PHP
<?php
|
|
|
|
test('the application returns a successful response', function () {
|
|
$response = $this->get('/');
|
|
|
|
$response->assertStatus(200);
|
|
});
|