seeControllerIs

Verifies the framework controller of the current page.

Arguments

Name Type Required Default Description
controller string true The expected controller

Examples

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