buckets/tests/TestCase.php

16 lines
240 B
PHP
Raw Normal View History

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