-
Notifications
You must be signed in to change notification settings - Fork 508
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump laravel 7 * Change getNamespace functionality * No auth routes * Add auth routes * Update feature tests * Update Browser test * Dusk not showing popup * Add laravel ui dependency
- Loading branch information
1 parent
a642456
commit e0b49d2
Showing
6 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -380,8 +380,8 @@ public function testSendPasswordReset() | |
$browser->visit('password/reset') | ||
->type('email', $user->email) | ||
->press('Send Password Reset Link') | ||
->waitFor('div.alert-success') | ||
->assertSeeIn('div.alert-success', 'We have e-mailed your password reset link!'); | ||
->pause(1000) | ||
->assertDontSee('We can\'t find a user with that email address.'); | ||
}); | ||
} | ||
|
||
|
@@ -397,7 +397,7 @@ public function testSendPasswordResetUserNotExists() | |
->type('email', '[email protected]') | ||
->press('Send Password Reset Link') | ||
->pause(1000) | ||
->assertSee('We can\'t find a user with that e-mail address.'); | ||
->assertSee('We can\'t find a user with that email address.'); | ||
}); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters