QA: Do not use local paths for page objects

These will not run in the daily build!

Change-Id: I10c6c083949c043779b9ceca70d27fc0a303c39a
This commit is contained in:
jdlrobson 2019-04-09 17:29:12 -07:00 committed by Jdlrobson
parent 9a9749603f
commit 377a899b12
1 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,6 @@
*/
module.exports = {
// Page is a constructor, all other pageObjects are instances.
Page: require( '../../../../../../../tests/selenium/pageobjects/page.js' ),
UserLoginPage: require( '../../../../../../../tests/selenium/pageobjects/userlogin.page.js' )
Page: require( 'wdio-mediawiki/Page' ),
UserLoginPage: require( 'wdio-mediawiki/LoginPage' )
};