* valid-jsdoc replaced with jsdoc plugin * New /selenium config Change-Id: I471eebac0312cb25c539c3f6a3ecfc7cfd4ed8d6
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' );
|
|
const BlankPage = require( './../BlankPage' );
|
|
|
|
describe( 'BlankPage', function () {
|
|
it( 'should have its title @daily', function () {
|
|
BlankPage.open();
|
|
|
|
// check
|
|
assert.strictEqual( BlankPage.heading.getText(), 'Blank page' );
|
|
} );
|
|
} );
|