Files
Zonneplan/tests/Feature/ExampleTest.php
T
JustZoe101 3ae3222732
tests / ci (push) Failing after 4m24s
Initial commit
2026-08-01 18:17:20 +02:00

19 lines
318 B
PHP

<?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();
}
}