From 2ebdfa869d0c3ef278f8bd4d07459cd479aedeb9 Mon Sep 17 00:00:00 2001 From: Sergio Ojeda Date: Fri, 3 Nov 2023 21:53:32 -0300 Subject: [PATCH] fix: test_the_application_returns_a_successful_response --- tests/Feature/ExampleTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index d26e6c9d1fb..f8e6880eaf4 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -14,6 +14,8 @@ class ExampleTest extends TestCase */ public function test_the_application_returns_a_successful_response(): void { + $this->withoutVite(); + $response = $this->get('/'); $response->assertStatus(200);