openclassify/tests/TestCase.php
copilot-swe-agent[bot] 8e69d0d844 Add FilamentPHP v5 admin/partner panels, Docker, Codespaces, fix CI and tests
Co-authored-by: fatihalp <219454+fatihalp@users.noreply.github.com>
2026-03-03 08:11:07 +00:00

15 lines
239 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();
}
}