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.
85 lines
2.1 KiB
85 lines
2.1 KiB
5 years ago
|
'use strict'
|
||
|
require('@babel/register')()
|
||
|
|
||
5 years ago
|
const crxFile = require('fs').readFileSync('test-browser/extensions/chrome/metamask.crx')
|
||
5 years ago
|
const metamaskExtension = new Buffer.from(crxFile).toString('base64') // eslint-disable-line
|
||
|
|
||
|
module.exports = {
|
||
5 years ago
|
'src_folders': ['test-browser/tests'],
|
||
|
'output_folder': 'reports/tests',
|
||
|
'custom_commands_path': ['test-browser/commands'],
|
||
5 years ago
|
'custom_assertions_path': '',
|
||
|
'page_objects_path': '',
|
||
|
'globals_path': '',
|
||
|
|
||
|
'test_settings': {
|
||
|
'default': {
|
||
|
'selenium_port': 4444,
|
||
|
'selenium_host': 'localhost',
|
||
|
'globals': {
|
||
|
'waitForConditionTimeout': 10000,
|
||
|
'asyncHookTimeout': 100000
|
||
|
},
|
||
|
'screenshots': {
|
||
|
'enabled': true,
|
||
5 years ago
|
'path': './reports/screenshots',
|
||
5 years ago
|
'on_failure': true,
|
||
|
'on_error': true
|
||
|
},
|
||
|
'desiredCapabilities': {
|
||
|
'browserName': 'firefox',
|
||
|
'javascriptEnabled': true,
|
||
|
'acceptSslCerts': true
|
||
|
},
|
||
5 years ago
|
'exclude': ['tests/runAndDeploy.js']
|
||
5 years ago
|
},
|
||
|
|
||
|
'chrome': {
|
||
|
'desiredCapabilities': {
|
||
|
'browserName': 'chrome',
|
||
|
'javascriptEnabled': true,
|
||
|
'acceptSslCerts': true,
|
||
|
'goog:chromeOptions': {
|
||
|
'args': ['window-size=2560,1440', 'start-fullscreen']
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
'chrome-runAndDeploy': {
|
||
|
'desiredCapabilities': {
|
||
|
'browserName': 'chrome',
|
||
|
'javascriptEnabled': true,
|
||
|
'acceptSslCerts': true,
|
||
|
'goog:chromeOptions': {
|
||
|
'args': ['window-size=2560,1440', 'start-fullscreen'],
|
||
|
'extensions': [metamaskExtension]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
'safari': {
|
||
|
'desiredCapabilities': {
|
||
|
'browserName': 'safari',
|
||
|
'javascriptEnabled': true,
|
||
|
'acceptSslCerts': true
|
||
|
}
|
||
|
},
|
||
|
|
||
|
'ie': {
|
||
|
'desiredCapabilities': {
|
||
|
'browserName': 'internet explorer',
|
||
|
'javascriptEnabled': true,
|
||
|
'acceptSslCerts': true
|
||
|
}
|
||
|
},
|
||
|
|
||
|
'firefox': {
|
||
|
'desiredCapabilities': {
|
||
|
'browserName': 'firefox',
|
||
|
'javascriptEnabled': true,
|
||
|
'acceptSslCerts': true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|