Files
opencloud/accounts/nightwatch.conf.js
A.Unger 30b2756137 Add 'accounts/' from commit 'e55b8ae2f440e20e657fdc21827b935f64bd8458'
git-subtree-dir: accounts
git-subtree-mainline: fd66380082
git-subtree-split: e55b8ae2f4
2020-09-22 14:49:55 +02:00

12 lines
372 B
JavaScript

const path = require('path')
const PHOENIX_PATH = process.env.PHOENIX_PATH
const config = require(path.join(PHOENIX_PATH, 'nightwatch.conf.js'))
config.page_objects_path = [PHOENIX_PATH + '/tests/acceptance/pageObjects', 'ui/tests/acceptance/pageobjects']
config.custom_commands_path = PHOENIX_PATH + '/tests/acceptance/customCommands'
module.exports = {
...config
}