Skip to content

Commit

Permalink
Tests: Disable Vite in tests
Browse files Browse the repository at this point in the history
So that we don't have to have the dev server running, or have
built assets previously, before running tests.
  • Loading branch information
philbates35 committed Jan 17, 2024
1 parent c8d2aa6 commit 9c93c81
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,11 @@
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;

protected function setUp(): void
{
parent::setUp();

$this->withoutVite();
}
}

0 comments on commit 9c93c81

Please sign in to comment.