mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-18 02:40:50 +00:00
0d8e740635
* eslint-config-wikimedia: 0.27.0 → 0.28.0 The following rules are failing and were disabled: * modules: * no-jquery/no-extend * grunt-stylelint: 0.19.0 → 0.20.0 * stylelint-config-wikimedia: 0.16.1 → 0.17.1 Change-Id: I45a64d80ef5aa50b4a1abd871605f52682ab9b5b
19 lines
493 B
JavaScript
19 lines
493 B
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' ),
|
|
NotificationsPage = require( '../pageobjects/notifications.page' ),
|
|
UserLoginPage = require( 'wdio-mediawiki/LoginPage' );
|
|
|
|
describe( 'Notifications', () => {
|
|
|
|
it( 'checks for Notifications Page @daily', async () => {
|
|
|
|
await UserLoginPage.login( browser.config.mwUser, browser.config.mwPwd );
|
|
await NotificationsPage.open();
|
|
|
|
assert.strictEqual( await NotificationsPage.notificationHeading.getText(), 'Notifications' );
|
|
|
|
} );
|
|
|
|
} );
|