We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3673dc9 + 2bb663d commit 8c3bc1eCopy full SHA for 8c3bc1e
browser-testing.md
@@ -25,7 +25,7 @@ it('may sign in the user', function () {
25
26
User::factory()->create([ // assumes RefreshDatabase trait is used on Pest.php...
27
'email' => 'nuno@laravel.com',
28
- 'password' => bcrypt('password'),
+ 'password' => 'password',
29
]);
30
31
$page = visit('/')->on()->mobile()->firefox();
@@ -136,7 +136,7 @@ You can visit multiple pages simultaneously by passing an array of URLs to the `
136
```php
137
$pages = visit(['/', '/about']);
138
139
-$page->assertNoSmoke()
+$pages->assertNoSmoke()
140
->assertNoConsoleLogs()
141
->assertNoJavaScriptErrors();
142
0 commit comments