mediawiki-skins-MinervaNeue/tests/selenium/specs/user_page.js
shyblumer 46a0597a4f selenium: Add date and bug ID to skipped tests
- Include date and bug ID in skipped test comments
- Helps track and identify unfixed tests

Bug: T280652
Change-Id: I2e78385e3ed5f0cb073677d4b4d0bcb74454c66f
2024-07-14 22:53:20 -04:00

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();
} );
} );