mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-04 19:29:49 -06:00
10 lines
369 B
JavaScript
10 lines
369 B
JavaScript
const path = require('path')
|
|
const TEST_INFRA_DIRECTORY = process.env.TEST_INFRA_DIRECTORY
|
|
|
|
const config = require(path.join(TEST_INFRA_DIRECTORY, 'nightwatch.conf.js'))
|
|
|
|
config.page_objects_path = [TEST_INFRA_DIRECTORY + '/pageObjects', 'ui/tests/acceptance/pageobjects']
|
|
config.custom_commands_path = TEST_INFRA_DIRECTORY + '/customCommands'
|
|
|
|
module.exports = config
|