trypost/tests/TestCase.php

27 lines
437 B
PHP
Raw Normal View History

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
{
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
}