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