UNPKG

577 BJavaScriptView Raw
1exports.config = {
2 //seleniumAddress: 'http://localhost:4444/wd/hub',
3
4 // seleniumServerJar: '../node_modules/protractor/node_modules/webdriver-manager/selenium/selenium-server-standalone-3.2.0.jar',
5
6 // Capabilities to be passed to the webdriver instance.
7 multiCapabilities: [
8 {
9 'browserName': 'chrome',
10 'maxInstances': 2,
11 shardTestFiles: true
12 }
13 ],
14
15 allScriptsTimeout: 60000,
16
17 specs: ['./tests/e2e/**/*.js'],
18
19 // Options to be passed to Jasmine-node.
20 jasmineNodeOpts: {
21 showColors: true,
22 defaultTimeoutInterval: 30000
23 }
24};
25