You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.5 KiB
101 lines
2.5 KiB
'use strict'
|
|
var buildId = process.env.CIRCLE_BUILD_NUM || process.env.TRAVIS_JOB_NUMBER
|
|
|
|
module.exports = {
|
|
'src_folders': ['./test-browser-debugger/test'],
|
|
'output_folder': './test-browser-debugger/test/reports',
|
|
'custom_commands_path': '',
|
|
'custom_assertions_path': '',
|
|
'globals_path': '',
|
|
'page_objects_path': '',
|
|
|
|
'selenium': {
|
|
'start_process': false,
|
|
'server_path': '',
|
|
'log_path': '',
|
|
'host': '127.0.0.1',
|
|
'port': 4444,
|
|
'cli_args': {
|
|
'webdriver.chrome.driver': '',
|
|
'webdriver.ie.driver': '',
|
|
'webdriver.firefox.profile': ''
|
|
}
|
|
},
|
|
|
|
'test_settings': {
|
|
'default': {
|
|
'launch_url': 'http://ondemand.saucelabs.com:80',
|
|
'selenium_host': 'ondemand.saucelabs.com',
|
|
'selenium_port': 80,
|
|
'silent': true,
|
|
'username': 'yanneth',
|
|
'access_key': '1f5a4560-b02b-41aa-b52b-f033aad30870',
|
|
'use_ssl': false,
|
|
'globals': {
|
|
'waitForConditionTimeout': 10000,
|
|
'asyncHookTimeout': 100000
|
|
},
|
|
'screenshots': {
|
|
'enabled': false,
|
|
'path': ''
|
|
},
|
|
'desiredCapabilities': {
|
|
'browserName': 'firefox',
|
|
'javascriptEnabled': true,
|
|
'acceptSslCerts': true,
|
|
'build': 'build-' + buildId,
|
|
'tunnel-identifier': 'remix_tests_' + buildId
|
|
}
|
|
},
|
|
|
|
'chrome': {
|
|
'desiredCapabilities': {
|
|
'browserName': 'chrome',
|
|
'javascriptEnabled': true,
|
|
'acceptSslCerts': true,
|
|
'build': 'build-' + buildId,
|
|
'tunnel-identifier': 'remix_tests_' + buildId
|
|
}
|
|
},
|
|
|
|
'safari': {
|
|
'desiredCapabilities': {
|
|
'browserName': 'safari',
|
|
'javascriptEnabled': true,
|
|
'platform': 'OS X 10.11',
|
|
'version': '10.0',
|
|
'acceptSslCerts': true,
|
|
'build': 'build-' + buildId,
|
|
'tunnel-identifier': 'remix_tests_' + buildId
|
|
}
|
|
},
|
|
|
|
'ie': {
|
|
'desiredCapabilities': {
|
|
'browserName': 'internet explorer',
|
|
'javascriptEnabled': true,
|
|
'acceptSslCerts': true,
|
|
'platform': 'Windows 10',
|
|
'version': '11.103',
|
|
'build': 'build-' + buildId,
|
|
'tunnel-identifier': 'remix_tests_' + buildId
|
|
}
|
|
},
|
|
|
|
'local': {
|
|
'launch_url': 'http://localhost',
|
|
'selenium_host': '127.0.0.1',
|
|
'selenium_port': 4444,
|
|
'silent': true,
|
|
'screenshots': {
|
|
'enabled': false,
|
|
'path': ''
|
|
},
|
|
'desiredCapabilities': {
|
|
'browserName': 'firefox',
|
|
'javascriptEnabled': true,
|
|
'acceptSslCerts': true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|