mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-23 13:56:51 +00:00
selenium: Delete tests disabled more than a year ago
Tests in the three deleted files were all disabled in 2022 and 2023. Bug: T280652 Change-Id: I727acd43726075282f10811c4529daad91ad71c5
This commit is contained in:
parent
b4bcfa0db2
commit
b85fdb68d7
|
@ -1,38 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
const {
|
||||
iAmOnAPageThatDoesNotExist, iClickTheBrowserBackButton,
|
||||
iClickTheOverlayCloseButton, iDoNotSeeAnOverlay,
|
||||
iAmLoggedIntoTheMobileWebsite
|
||||
} = require( '../features/step_definitions/common_steps' ),
|
||||
{
|
||||
iClickTheEditButton, iSeeTheWikitextEditorOverlay
|
||||
} = require( '../features/step_definitions/editor_steps' );
|
||||
|
||||
// @chrome @en.m.wikipedia.beta.wmflabs.org @firefox @test2.m.wikipedia.org @vagrant @login
|
||||
describe( 'Wikitext Editor', () => {
|
||||
|
||||
beforeEach( async () => {
|
||||
await iAmLoggedIntoTheMobileWebsite();
|
||||
await iAmOnAPageThatDoesNotExist();
|
||||
} );
|
||||
|
||||
// @smoke
|
||||
// Skipped on 2022-12-07 in 865667 because of T313775
|
||||
it.skip( 'Closing editor (overlay button)', () => {
|
||||
iClickTheEditButton();
|
||||
iSeeTheWikitextEditorOverlay();
|
||||
iClickTheOverlayCloseButton();
|
||||
iDoNotSeeAnOverlay();
|
||||
} );
|
||||
|
||||
// FIXME T348539
|
||||
// Skipped on 2023-11-27 in 977779 because of T348539
|
||||
it.skip( 'Closing editor (browser button)', async () => {
|
||||
await iClickTheEditButton();
|
||||
await iSeeTheWikitextEditorOverlay();
|
||||
await iClickTheBrowserBackButton();
|
||||
await iDoNotSeeAnOverlay();
|
||||
} );
|
||||
|
||||
} );
|
|
@ -1,36 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
const {
|
||||
pageExists, iShouldSeeAToastNotification,
|
||||
iAmUsingMobileScreenResolution,
|
||||
iAmUsingTheMobileSite,
|
||||
iAmLoggedIntoTheMobileWebsite,
|
||||
iAmOnPage
|
||||
} = require( '../features/step_definitions/common_steps' ),
|
||||
{
|
||||
iClickTheSearchIcon,
|
||||
iTypeIntoTheSearchBox,
|
||||
iClickASearchWatchstar,
|
||||
iSeeTheSearchOverlay
|
||||
} = require( '../features/step_definitions/search_steps' );
|
||||
|
||||
// @test2.m.wikipedia.org @vagrant @login
|
||||
describe( 'Search', () => {
|
||||
// FIXME: T334634
|
||||
// Skipped on 2023-11-27 in 977621 because of T334634
|
||||
it.skip( 'Clicking on a watchstar toggles the watchstar', async () => {
|
||||
await iAmUsingTheMobileSite();
|
||||
await pageExists( 'Selenium search test' );
|
||||
await iAmLoggedIntoTheMobileWebsite();
|
||||
await iAmOnPage( 'Main Page' );
|
||||
await iAmUsingMobileScreenResolution();
|
||||
await iClickTheSearchIcon();
|
||||
await iSeeTheSearchOverlay();
|
||||
await iTypeIntoTheSearchBox( 'Selenium search tes' );
|
||||
// This pause statement is a temporary bandaid until we figure a bettery dynamic sync
|
||||
// eslint-disable-next-line wdio/no-pause
|
||||
await browser.pause( 1000 );
|
||||
await iClickASearchWatchstar();
|
||||
await iShouldSeeAToastNotification();
|
||||
} );
|
||||
} );
|
|
@ -1,23 +0,0 @@
|
|||
'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-11 in 905565 because of T293084
|
||||
it.skip( 'Check components in user page', async () => {
|
||||
await iShouldBeOnMyUserPage();
|
||||
await thereShouldBeALinkToMyTalkPage();
|
||||
await thereShouldBeALinkToMyContributions();
|
||||
} );
|
||||
} );
|
Loading…
Reference in a new issue