selenium: Replace ES5 one-var assignments with const/let per line
[lhc/web/wiklou.git] / tests / selenium / wdio-mediawiki / specs / BlankPage.js
index f84ae90..9fbee56 100644 (file)
@@ -1,11 +1,11 @@
-const assert = require( 'assert' ),
-       BlankPage = require( 'wdio-mediawiki/BlankPage' );
+const assert = require( 'assert' );
+const BlankPage = require( './../BlankPage' );
 
 describe( 'BlankPage', function () {
-       it( 'should have its title', function () {
+       it( 'should have its title @daily', function () {
                BlankPage.open();
 
                // check
-               assert.equal( BlankPage.heading.getText(), 'Blank page' );
+               assert.strictEqual( BlankPage.heading.getText(), 'Blank page' );
        } );
 } );