mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 19:21:39 +00:00
dac9039246
This reverts commit 1903d1adae
.
This didn't actually solve the problem.
Change-Id: Ic789e96dcc17268abe3690647e1d82a764491646
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
const { iClickOnTheCategoryButton,
|
|
iShouldSeeTheCategoriesOverlay,
|
|
iShouldSeeAListOfCategories
|
|
} = require( '../features/step_definitions/category_steps' ),
|
|
{
|
|
iAmInAWikiThatHasCategories
|
|
} = require( '../features/step_definitions/create_page_api_steps' ),
|
|
{
|
|
iAmUsingTheMobileSite,
|
|
iAmOnPage, iAmInBetaMode
|
|
} = require( '../features/step_definitions/common_steps' );
|
|
|
|
// Feature: Categories
|
|
describe( 'Categories', function () {
|
|
// Scenario: I can view categories
|
|
it( 'I can view categories', function () {
|
|
const title = 'Selenium categories test page';
|
|
// Given I am in a wiki that has categories
|
|
iAmInAWikiThatHasCategories( title );
|
|
|
|
// And I am using the mobile site
|
|
iAmUsingTheMobileSite();
|
|
|
|
// And I am in beta mode
|
|
iAmInBetaMode();
|
|
|
|
// And I am on the "Selenium categories test page" page
|
|
iAmOnPage( title );
|
|
|
|
// When I click on the category button
|
|
iClickOnTheCategoryButton();
|
|
|
|
// Then I should see the categories overlay
|
|
iShouldSeeTheCategoriesOverlay();
|
|
|
|
// FIXME: This check is partially skipped as there is no way to lower $wgJobRunRate
|
|
// See: T199939#5095838
|
|
try {
|
|
iShouldSeeAListOfCategories();
|
|
} catch ( e ) {
|
|
// pass.
|
|
// eslint-disable-next-line no-console
|
|
console.warn( 'Unable to check the list of the categories. Is wgJobRunRate set correctly?' );
|
|
}
|
|
} );
|
|
} );
|