Require the backend root to remain unclaimed by a frontend response. The standalone Vue application owns its own development and delivery path.
15 lines
244 B
PHP
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();
|
|
}
|
|
}
|