Files
kelas-taming/tests/TestCase.php
Saufi 726457a7ed
Some checks failed
CI/CD / Test (push) Successful in 1m5s
CI/CD / Build (push) Failing after 2m3s
CI/CD / Deploy (push) Has been skipped
test runner 6 codex
2026-05-13 12:33:06 +08:00

16 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();
}
}