test runner 6 codex
Some checks failed
CI/CD / Test (push) Successful in 1m5s
CI/CD / Build (push) Failing after 2m3s
CI/CD / Deploy (push) Has been skipped

This commit is contained in:
Saufi
2026-05-13 12:33:06 +08:00
parent 01c89c44a7
commit 726457a7ed
2 changed files with 6 additions and 5 deletions

View File

@@ -18,10 +18,6 @@ pest()->extend(TestCase::class)
->use(RefreshDatabase::class) ->use(RefreshDatabase::class)
->in('Feature'); ->in('Feature');
beforeEach(function () {
$this->withoutVite();
})->in('Feature');
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Expectations | Expectations

View File

@@ -6,5 +6,10 @@ use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase abstract class TestCase extends BaseTestCase
{ {
// protected function setUp(): void
{
parent::setUp();
$this->withoutVite();
}
} }