TestCase.php 275 B

12345678910111213141516
  1. <?php
  2. namespace Tests;
  3. use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
  4. abstract class TestCase extends BaseTestCase
  5. {
  6. use \Tests\CreatesApplication;
  7. protected function setUp(): void
  8. {
  9. parent::setUp();
  10. $this->withoutVite();
  11. }
  12. }