There was an error while loading. Please reload this page.
1 parent 969cdd0 commit 6fd02e8Copy full SHA for 6fd02e8
1 file changed
tests/TestCase.php
@@ -10,13 +10,10 @@ abstract class TestCase extends BaseTestCase
10
{
11
use CreatesApplication;
12
13
- /**
14
- * @before
15
- */
16
- public function boot(): void
+ protected function setUp(): void
17
18
- $this->afterApplicationCreated(function () {
19
- $this->withoutVite();
20
- });
+ parent::setUp();
+
+ $this->withoutVite();
21
}
22
0 commit comments