mirror of
https://github.com/twinpath/app-beta.git
synced 2026-01-26 05:45:26 +07: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);
|
|
});
|