'use strict' var CIRCLE_BUILD_NUM = process.env.CIRCLE_BUILD_NUM module.exports = { 'src_folders': ['test-browser/tests'], 'output_folder': 'reports', 'custom_commands_path': '', 'custom_assertions_path': '', 'page_objects_path': '', 'globals_path': '', 'test_settings': { 'default': { 'launch_url': 'http://ondemand.saucelabs.com:80', 'selenium_host': 'ondemand.saucelabs.com', 'selenium_port': 80, 'silent': true, 'username': 'chriseth', 'access_key': 'b781828a-9e9c-43d8-89d4-2fbb879595ca', 'use_ssl': false, 'globals': { 'waitForConditionTimeout': 10000, 'asyncHookTimeout': 100000 }, 'screenshots': { 'enabled': false, 'path': '' }, 'desiredCapabilities': { 'browserName': 'firefox', 'javascriptEnabled': true, 'acceptSslCerts': true, 'build': 'build-' + CIRCLE_BUILD_NUM, 'tunnel-identifier': 'browsersolidity_tests_' + CIRCLE_BUILD_NUM } }, 'chrome': { 'desiredCapabilities': { 'browserName': 'chrome', 'javascriptEnabled': true, 'acceptSslCerts': true, 'build': 'build-' + CIRCLE_BUILD_NUM, 'tunnel-identifier': 'browsersolidity_tests_' + CIRCLE_BUILD_NUM, 'chromeOptions': { 'args': ['window-size=2560,1440', 'start-fullscreen'] } } }, 'safari': { 'desiredCapabilities': { 'browserName': 'safari', 'javascriptEnabled': true, 'platform': 'OS X 10.11', 'version': '10.0', 'acceptSslCerts': true, 'build': 'build-' + CIRCLE_BUILD_NUM, 'tunnel-identifier': 'browsersolidity_tests_' + CIRCLE_BUILD_NUM } }, 'ie': { 'desiredCapabilities': { 'browserName': 'internet explorer', 'javascriptEnabled': true, 'platform': 'Windows 10', 'acceptSslCerts': true, 'version': '11.103', 'build': 'build-' + CIRCLE_BUILD_NUM, 'tunnel-identifier': 'browsersolidity_tests_' + CIRCLE_BUILD_NUM } }, 'local': { 'launch_url': 'http://localhost:8080', 'selenium_port': 4444, 'selenium_host': 'localhost', 'desiredCapabilities': { 'browserName': 'firefox', 'javascriptEnabled': true, 'acceptSslCerts': true } } } }