diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 4ae02bc..4708c33 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -2,7 +2,6 @@ namespace Tests\Feature; -use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class ExampleTest extends TestCase @@ -15,7 +14,9 @@ class ExampleTest extends TestCase public function test_example() { $response = $this->get('/'); + $response->assertStatus(302); + $response = $this->get('/vue'); $response->assertStatus(200); } }