17 lines
393 B
PHP
17 lines
393 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
// CI runs the asset build in a separate job, so there is no Vite
|
|
// manifest here; without this any test that renders the layout fails.
|
|
$this->withoutVite();
|
|
}
|
|
}
|