meowsic/tests/Feature/ExampleTest.php

8 lines
129 B
PHP
Raw Normal View History

2024-11-05 18:05:41 +02:00
<?php
it('returns a successful response', function () {
$response = $this->get('/');
$response->assertStatus(200);
});