mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 03:08:12 +00:00
22 lines
734 B
JavaScript
22 lines
734 B
JavaScript
|
const { iAmLoggedIntoTheMobileWebsite } = require( '../features/step_definitions/common_steps' ),
|
||
|
{ iVisitMyUserPage, iShouldBeOnMyUserPage, thereShouldBeALinkToMyUploads,
|
||
|
thereShouldBeALinkToMyContributions, thereShouldBeALinkToMyTalkPage
|
||
|
} = require( '../features/step_definitions/user_page_steps' );
|
||
|
|
||
|
// @chrome @firefox @login @test2.m.wikipedia.org @vagrant
|
||
|
describe( 'User:<username>', () => {
|
||
|
|
||
|
beforeEach( () => {
|
||
|
iAmLoggedIntoTheMobileWebsite();
|
||
|
iVisitMyUserPage();
|
||
|
} );
|
||
|
|
||
|
// </username>@en.m.wikipedia.beta.wmflabs.org
|
||
|
it( 'Check components in user page', () => {
|
||
|
iShouldBeOnMyUserPage();
|
||
|
thereShouldBeALinkToMyTalkPage();
|
||
|
thereShouldBeALinkToMyContributions();
|
||
|
thereShouldBeALinkToMyUploads();
|
||
|
} );
|
||
|
} );
|