13 lines
364 B
PHP
13 lines
364 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests;
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
||
|
|
|
||
|
|
abstract class BrowserTestCase extends BaseTestCase
|
||
|
|
{
|
||
|
|
// Intentionally does NOT call withoutVite(): browser tests drive the real
|
||
|
|
// frontend (Livewire + Alpine) through the in-process server, so Vite must
|
||
|
|
// resolve to the built assets rather than be stubbed out.
|
||
|
|
}
|