buckets/tests/TestCase.php
myrmidex c3ce5b0b80
Some checks failed
CI / ci (push) Successful in 7m53s
CI / ci (pull_request) Successful in 5m43s
Build and Push Docker Image / build (push) Failing after 7m4s
24 - Fix Vite manifest error in CI tests
2026-03-30 00:20:40 +02:00

15 lines
240 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->withoutVite();
}
}