Name | Type | Required | Default | Description |
---|---|---|---|---|
route | string | true | The expected route. |
it( "can verify the current route", function() {
this.visit( "/login" )
.type( "scotty@uss.enterprise", "email" )
.type( "miracle_worker", "password" )
.press( "Log In" )
.seePageIs( "/" );
} );