Files
php-flasher/demo/laravel/tests/Feature/ExampleTest.php
T
2024-04-09 07:57:01 +00:00

8 lines
129 B
PHP

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