Custom test bootstrap, RefreshDatabase trait override, and dedicated sqlite-cleanup machinery were overengineered. Restore vendor/autoload.php bootstrap, :memory: sqlite, plain TestCase, and standard Pest setup as shipped beforeef94e03f. Existing tests unchanged. Reverts bootstrap portions ofef94e03fand all of6f6a083d,18c119b3.
10 lines
160 B
PHP
10 lines
160 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase {}
|