Created
April 11, 2014 11:15
-
-
Save tatey/10459426 to your computer and use it in GitHub Desktop.
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 = { | |
// The address of a running selenium server. | |
seleniumAddress: 'http://hub.browserstack.com/wd/hub', | |
// Capabilities to be passed to the webdriver instance. | |
capabilities: { | |
'browserName': 'chrome', | |
'browserstack.tunnel': 'true', | |
'browserstack.debug': 'true', | |
'browserstack.user' : process.env.BROWSERSTACK_USER, | |
'browserstack.key': process.env.BROWSERSTACK_KEY | |
}, | |
// Spec patterns are relative to the current working directly when | |
// protractor is called. | |
specs: [ | |
'../../spec/e2e/*_spec.js' | |
], | |
// Options to be passed to Jasmine-node. | |
jasmineNodeOpts: { | |
showColors: true, | |
defaultTimeoutInterval: 30000 | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment