From 4340e1151506cff95ac3b5363d159ae45b414524 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Mon, 20 Feb 2017 16:41:47 +0000 Subject: [PATCH] Test micropub client page --- tests/Browser/MicropubClientTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Browser/MicropubClientTest.php b/tests/Browser/MicropubClientTest.php index 4b20b03d..fa3f3a8d 100644 --- a/tests/Browser/MicropubClientTest.php +++ b/tests/Browser/MicropubClientTest.php @@ -12,11 +12,11 @@ class MicropubClientTest extends DuskTestCase * * @return void */ - public function test_client_page_see_me_url() + public function test_client_page_see_authenticated() { $this->browse(function ($browser) { $browser->visit('/micropub/create') - ->assertSee(config('app.url')); + ->assertSee('You are authenticated'); }); }