mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
677ce50b24
WebdriverIO has dropped support of sync mode, hence changed to async. Update npm packages: @wdio/*, wdio-mediawiki because async mode needs at least @wdio v7.9. Remove npm packages: @wdio/dot-reporter and @wdio/sync. Bug: T293084 Change-Id: I5babbdadf21e9f951f69de93bfca5213a50965aa
23 lines
714 B
JavaScript
23 lines
714 B
JavaScript
'use strict';
|
|
|
|
const { iAmUsingTheMobileSite } = require( '../features/step_definitions/common_steps' ),
|
|
{ iVisitMyUserPage, iShouldBeOnMyUserPage,
|
|
thereShouldBeALinkToMyContributions, thereShouldBeALinkToMyTalkPage
|
|
} = require( '../features/step_definitions/user_page_steps' );
|
|
|
|
// @chrome @firefox @login @test2.m.wikipedia.org @vagrant
|
|
describe( 'User:<username>', () => {
|
|
|
|
beforeEach( async () => {
|
|
await iAmUsingTheMobileSite();
|
|
await iVisitMyUserPage();
|
|
} );
|
|
|
|
// </username>@en.m.wikipedia.beta.wmflabs.org
|
|
it.skip( 'Check components in user page', async () => {
|
|
await iShouldBeOnMyUserPage();
|
|
await thereShouldBeALinkToMyTalkPage();
|
|
await thereShouldBeALinkToMyContributions();
|
|
} );
|
|
} );
|