wiki.techinc.nl/tests/selenium/wdio-mediawiki/specs/BlankPage.js
Ed Sanders 8b720e9bd6 eslint: Update to eslint-config-wikimedia 0.16.0
* valid-jsdoc replaced with jsdoc plugin
* New /selenium config

Change-Id: I471eebac0312cb25c539c3f6a3ecfc7cfd4ed8d6
2020-06-02 21:32:56 +01:00

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' );
} );
} );