mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-04 02:29:00 +00:00
46a0597a4f
- Include date and bug ID in skipped test comments - Helps track and identify unfixed tests Bug: T280652 Change-Id: I2e78385e3ed5f0cb073677d4b4d0bcb74454c66f
24 lines
759 B
JavaScript
24 lines
759 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
|
|
// Skipped on 2023-04-06 because of T293084
|
|
it.skip( 'Check components in user page', async () => {
|
|
await iShouldBeOnMyUserPage();
|
|
await thereShouldBeALinkToMyTalkPage();
|
|
await thereShouldBeALinkToMyContributions();
|
|
} );
|
|
} );
|