mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-01 02:46:46 +00:00
05f3e66a9d
Changed `selenium-daily` npm script to only run tests tagged `@daily` and removed `it.skip` on tests failing in beta cluster. Bug:T227009 Change-Id: Id2edbfd941df098d326fa30ed9dc9f68e228f021
17 lines
471 B
JavaScript
17 lines
471 B
JavaScript
var assert = require( 'assert' ),
|
|
NotificationsPage = require( '../pageobjects/notifications.page' ),
|
|
UserLoginPage = require( 'wdio-mediawiki/LoginPage' );
|
|
|
|
describe( 'Notifications', function () {
|
|
|
|
it( 'checks for Notifications Page @daily', function () {
|
|
|
|
UserLoginPage.login( browser.options.username, browser.options.password );
|
|
NotificationsPage.open();
|
|
|
|
assert.strictEqual( NotificationsPage.notificationHeading.getText(), 'Notifications' );
|
|
|
|
} );
|
|
|
|
} );
|