Files
website/tests/Feature/ReleaseNotesReachabilityTest.php
2025-03-04 12:04:08 +01:00

18 lines
304 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Feature;
use Tests\TestCase;
class ReleaseNotesReachabilityTest extends TestCase
{
public function test_release_notes_is_reachable()
{
$response = $this->get('/early-access/release-notes');
$response->assertStatus(200);
}
}