2020-06-02 21:21:44 +00:00
|
|
|
'use strict';
|
|
|
|
|
2019-12-12 22:49:48 +00:00
|
|
|
const { iAmUsingTheMobileSite } = require( '../features/step_definitions/common_steps' ),
|
2019-10-01 01:19:38 +00:00
|
|
|
{ iVisitMyUserPage, iShouldBeOnMyUserPage,
|
2019-04-08 23:45:11 +00:00
|
|
|
thereShouldBeALinkToMyContributions, thereShouldBeALinkToMyTalkPage
|
|
|
|
} = require( '../features/step_definitions/user_page_steps' );
|
|
|
|
|
|
|
|
// @chrome @firefox @login @test2.m.wikipedia.org @vagrant
|
|
|
|
describe( 'User:<username>', () => {
|
|
|
|
|
2023-04-06 22:25:40 +00:00
|
|
|
beforeEach( async () => {
|
|
|
|
await iAmUsingTheMobileSite();
|
|
|
|
await iVisitMyUserPage();
|
2019-04-08 23:45:11 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
// </username>@en.m.wikipedia.beta.wmflabs.org
|
2023-04-06 22:25:40 +00:00
|
|
|
it.skip( 'Check components in user page', async () => {
|
|
|
|
await iShouldBeOnMyUserPage();
|
|
|
|
await thereShouldBeALinkToMyTalkPage();
|
|
|
|
await thereShouldBeALinkToMyContributions();
|
2019-04-08 23:45:11 +00:00
|
|
|
} );
|
|
|
|
} );
|