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>', () => {
|
|
|
|
|
|
|
|
beforeEach( () => {
|
2019-12-12 22:49:48 +00:00
|
|
|
iAmUsingTheMobileSite();
|
2019-04-08 23:45:11 +00:00
|
|
|
iVisitMyUserPage();
|
|
|
|
} );
|
|
|
|
|
|
|
|
// </username>@en.m.wikipedia.beta.wmflabs.org
|
|
|
|
it( 'Check components in user page', () => {
|
|
|
|
iShouldBeOnMyUserPage();
|
|
|
|
thereShouldBeALinkToMyTalkPage();
|
|
|
|
thereShouldBeALinkToMyContributions();
|
|
|
|
} );
|
|
|
|
} );
|