From 7b5ca5923332d903ba1edc79a8d0a9a844775a4f Mon Sep 17 00:00:00 2001 From: rajmundtoth0 Date: Mon, 25 Aug 2025 10:44:07 +0200 Subject: [PATCH] Add missing semicolon to browser testing. --- browser-testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser-testing.md b/browser-testing.md index b5f3a6c..639e948 100644 --- a/browser-testing.md +++ b/browser-testing.md @@ -36,7 +36,7 @@ it('may sign in the user', function () { ->fill('email', 'nuno@laravel.com') ->fill('password', 'password') ->click('Submit') - ->assertSee('Dashboard') + ->assertSee('Dashboard'); $this->assertAuthenticated();