seeViewIs

Verifies the framework view of the current page.

Arguments

Name Type Required Default Description
view string true The expected view.

Examples

it( "can verify the current framework view", function() {
    this.visit( "/" )
        .seeViewIs( "main/index" );
} );