Attainly/backend/tests/Feature/ExampleTest.php
Yisroel Baum c176be3536
test detached backend root
Require the backend root to remain unclaimed by a frontend response. The standalone Vue application owns its own development and delivery path.
2026-07-30 23:11:23 +03:00

15 lines
244 B
PHP

<?php
namespace Tests\Feature;
use Tests\TestCase;
class ExampleTest extends TestCase
{
public function test_root_does_not_serve_a_frontend(): void
{
$response = $this->get('/');
$response->assertNotFound();
}
}