seeHandlerIs

Verifies the framework handler of the current page.

Arguments

Name Type Required Default Description
handler string true The expected handler

Examples

it( "can verify a framework handler", function() {
    this.visit( "/" )
        .seeHandlerIs( "Main" );
} );