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.
67 lines
1.7 KiB
67 lines
1.7 KiB
11 months ago
|
module.exports = {
|
||
|
src_folders: ['build-e2e/remixdesktop/test/tests/app'],
|
||
|
output_folder: './reports/tests',
|
||
|
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,
|
||
|
path: './reports/screenshots',
|
||
|
on_failure: true,
|
||
|
on_error: true
|
||
|
},
|
||
|
|
||
|
},
|
||
|
macos: {
|
||
|
desiredCapabilities: {
|
||
|
browserName: 'chrome',
|
||
|
javascriptEnabled: true,
|
||
|
acceptSslCerts: true,
|
||
|
'goog:chromeOptions': {
|
||
|
"binary": "electron .",
|
||
|
"args": [
|
||
|
"--folder=test/contracts",
|
||
|
"--remix-ide-url=http://localhost:8080",
|
||
|
"--e2e"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
linuxlocal: {
|
||
|
desiredCapabilities: {
|
||
|
browserName: 'chrome',
|
||
|
javascriptEnabled: true,
|
||
|
acceptSslCerts: true,
|
||
|
'goog:chromeOptions': {
|
||
|
"binary": "release/linux-unpacked/remixdesktop",
|
||
|
"args": [
|
||
|
"--e2e-local",
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
windows: {
|
||
|
desiredCapabilities: {
|
||
|
browserName: 'chrome',
|
||
|
javascriptEnabled: true,
|
||
|
acceptSslCerts: true,
|
||
|
'goog:chromeOptions': {
|
||
|
"binary": "./out/remixconnect-win32-x64/remixconnect.exe",
|
||
|
"args": [
|
||
|
"--folder=test/contracts",
|
||
|
"--remix-ide-url=http://localhost:8080",
|
||
|
"--e2e"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|