Feature tests were failing on the host runner with ViteManifestNotFoundException after the flaky Node build step was removed.
17 lines
306 B
PHP
17 lines
306 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
// Feature tests render Blade without a Vite build in CI.
|
|
$this->withoutVite();
|
|
}
|
|
}
|