Initial commit
tests / ci (push) Failing after 4m24s

This commit is contained in:
2026-08-01 18:17:20 +02:00
commit 3ae3222732
75 changed files with 18857 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
use RefreshDatabase;
public function test_returns_a_successful_response()
{
$response = $this->get(route('home'));
$response->assertOk();
}
}