feat: adds laravel stubs

This commit is contained in:
Nuno Maduro
2023-03-17 10:28:50 +00:00
parent 050fe38a90
commit 26cf278103
5 changed files with 101 additions and 0 deletions

View File

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