mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 19:21:39 +00:00
a32999e641
Change-Id: Icabf6e065ed5685207731262db72faf848a0a04d
23 lines
667 B
JavaScript
23 lines
667 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( () => {
|
|
iAmUsingTheMobileSite();
|
|
iVisitMyUserPage();
|
|
} );
|
|
|
|
// </username>@en.m.wikipedia.beta.wmflabs.org
|
|
it( 'Check components in user page', () => {
|
|
iShouldBeOnMyUserPage();
|
|
thereShouldBeALinkToMyTalkPage();
|
|
thereShouldBeALinkToMyContributions();
|
|
} );
|
|
} );
|