mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 03:08:12 +00:00
7f2b69ac14
This migrates the first of the browser tests which had a @login step from Ruby to Node.js Bug: T219920 Change-Id: I84e217e2a781aab9eb10e7d873c527d578ec8fd4
12 lines
392 B
JavaScript
12 lines
392 B
JavaScript
/**
|
|
* A list of all custom Minerva pageObjects.
|
|
* To simplify imports in world.js.
|
|
*/
|
|
module.exports = {
|
|
ArticlePage: require( './article_page' ),
|
|
ArticlePageWithEditorOverlay: require( './article_page_with_editor_overlay' ),
|
|
SpecialHistoryPage: require( './special_history_page' ),
|
|
SpecialMobileDiffPage: require( './special_mobilediff_page' ),
|
|
DiffPage: require( './diff_page' )
|
|
};
|