7 lines
147 B
PHP
Executable file
7 lines
147 B
PHP
Executable file
<?php
|
|
|
|
test('the application returns a successful response', function () {
|
|
$response = $this->get('/');
|
|
|
|
$response->assertStatus(200);
|
|
});
|