seeActionIs

Verifies the framework action of the current page.

Arguments

Name Type Required Default Description
action string true The expected action

Examples

it( "can verify a framework action", function() {
    this.visit( "/" )
        .seeActionIs( "index" );
} );