From 859b42ca8923742b13bf6ab783dd3d7e00ad161f Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 23 Feb 2017 14:41:13 +0000 Subject: [PATCH] Use a static piece of text on the homepage, so test can pass both locally and on travis --- tests/Browser/ExampleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Browser/ExampleTest.php b/tests/Browser/ExampleTest.php index b388384d..5430fc54 100644 --- a/tests/Browser/ExampleTest.php +++ b/tests/Browser/ExampleTest.php @@ -17,7 +17,7 @@ class ExampleTest extends DuskTestCase { $this->browse(function (Browser $browser) { $browser->visit('/') - ->assertSee('Jonny Barnes'); + ->assertSee('Built with love'); }); } }