Test micropub client page

This commit is contained in:
Jonny Barnes 2017-02-20 16:41:47 +00:00
parent 5b283f4f77
commit 4340e11515

View file

@ -12,11 +12,11 @@ class MicropubClientTest extends DuskTestCase
* *
* @return void * @return void
*/ */
public function test_client_page_see_me_url() public function test_client_page_see_authenticated()
{ {
$this->browse(function ($browser) { $this->browse(function ($browser) {
$browser->visit('/micropub/create') $browser->visit('/micropub/create')
->assertSee(config('app.url')); ->assertSee('You are authenticated');
}); });
} }