2026-01-15 01:13:44 +00:00
|
|
|
<?php
|
|
|
|
|
|
2026-01-18 22:05:34 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2026-01-15 01:13:44 +00:00
|
|
|
namespace Tests;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
|
|
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
|
|
|
{
|
2026-01-18 22:56:04 +00:00
|
|
|
use CreatesApplication;
|
|
|
|
|
|
2026-01-18 22:05:34 +00:00
|
|
|
/**
|
|
|
|
|
* Indicates whether the default seeder should run before each test.
|
|
|
|
|
*
|
|
|
|
|
* @var bool
|
|
|
|
|
*/
|
|
|
|
|
protected $seed = true;
|
|
|
|
|
|
|
|
|
|
protected function setUp(): void
|
|
|
|
|
{
|
|
|
|
|
parent::setUp();
|
2026-01-19 01:28:27 +00:00
|
|
|
|
|
|
|
|
$this->withoutVite();
|
2026-01-18 22:05:34 +00:00
|
|
|
}
|
2026-01-15 01:13:44 +00:00
|
|
|
}
|