Created
June 24, 2014 11:21
-
-
Save vilmosioo/8dbe5b7d0f363749c51e to your computer and use it in GitHub Desktop.
Protractor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.config = { | |
// ----- What tests to run ----- | |
specs: [ | |
'test/e2e/*.js' | |
], | |
// ----- Capabilities to be passed to the webdriver instance ---- | |
capabilities: {}, // not required anymore | |
// If you would like to run more than one instance of webdriver on the same | |
// tests, use multiCapabilities, which takes an array of capabilities. | |
// If this is specified, capabilities will be ignored. | |
multiCapabilities: [ | |
{ | |
'browserName': 'chrome', | |
'shardTestFiles': true, | |
'maxInstances': 10 | |
} | |
], | |
// ---- Other settings | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.config = { | |
// ----- What tests to run ----- | |
specs: [ | |
'test/e2e/*.js' | |
], | |
// ----- Capabilities to be passed to the webdriver instance ---- | |
capabilities: {}, // not required anymore | |
// If you would like to run more than one instance of webdriver on the same | |
// tests, use multiCapabilities, which takes an array of capabilities. | |
// If this is specified, capabilities will be ignored. | |
multiCapabilities: [ | |
{ | |
'browserName': 'chrome', | |
'shardTestFiles': true, | |
'maxInstances': 10 | |
}, | |
{ | |
'browserName': 'firefox', | |
'shardTestFiles': true, | |
'maxInstances': 10 | |
} | |
], | |
// ---- Other settings | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.config = { | |
// ----- What tests to run ----- | |
specs: [ | |
'test/e2e/*.js' | |
], | |
// ----- Capabilities to be passed to the webdriver instance ---- | |
capabilities: { | |
'browserName': 'chrome' | |
}, | |
// ---- Other settings | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment