Skip to content

Commit

Permalink
Remove inaccessible (protected) and duplicate dusk assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Feb 11, 2018
1 parent 7e4d432 commit d3acf2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dusk.md
Original file line number Diff line number Diff line change
Expand Up @@ -558,9 +558,9 @@ Assertion | Description
`$browser->assertPathIs('/home')` | Assert the current path matches the given path.
`$browser->assertPathIsNot('/home')` | Assert the current path does not match the given path.
`$browser->assertRouteIs($name, $parameters)` | Assert the current URL matches the given named route's URL.
`$browser->assertQueryStringHas($name)` | Assert the given query string parameter is present.
`$browser->assertQueryStringHas($name, $value)` | Assert the given query string parameter is present and has a given value.
`$browser->assertQueryStringMissing($name)` | Assert the given query string parameter is missing.
`$browser->assertHasQueryStringParameter($name)` | Assert that the given query string parameter is present.
`$browser->assertHasCookie($name)` | Assert the given cookie is present.
`$browser->assertCookieMissing($name)` | Assert that the given cookie is not present.
`$browser->assertCookieValue($name, $value)` | Assert a cookie has a given value.
Expand Down

0 comments on commit d3acf2a

Please sign in to comment.