diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index bcbb562c..d930a03e 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -16,7 +16,8 @@ class ExampleTest extends TestCase */ public function testBasicTest() { - $this->visit('/') - ->see('Laravel'); + $response = $this->get('/'); + + $response->assertHasStatus(200); } }