dishplanner/tests/TestCase.php

17 lines
314 B
PHP
Raw Normal View History

2025-10-13 14:57:11 +02:00
<?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();
}
2025-10-13 14:57:11 +02:00
}