Files
larapaper/tests/Feature/ExampleTest.php
T

8 lines
135 B
PHP

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