mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2025-12-10 06:52:05 +01:00
18 lines
342 B
JavaScript
18 lines
342 B
JavaScript
exports.config = {
|
|
seleniumAddress: 'http://127.0.0.1:4444/wd/hub',
|
|
|
|
specs: [
|
|
'./tests/integration/spec.js'
|
|
],
|
|
|
|
capabilities: {
|
|
'browserName': 'chrome'
|
|
},
|
|
|
|
chromeOptions: {
|
|
binary: "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe",
|
|
args: [],
|
|
extensions: []
|
|
}
|
|
};
|