dishplanner/tests/TestCase.php
myrmidex 08d86d9290
Some checks failed
CI / ci (push) Successful in 39m29s
CI / ci (pull_request) Has been cancelled
50 - Fix tests failing on missing Vite manifest
2026-08-17 20:45:45 +02:00

16 lines
314 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function setUp(): void
{
parent::setUp();
// Skip Vite asset resolution in tests: no build manifest exists.
$this->withoutVite();
}
}