Skip to content

Instantly share code, notes, and snippets.

@tatey
Created April 11, 2014 11:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tatey/10459426 to your computer and use it in GitHub Desktop.
Save tatey/10459426 to your computer and use it in GitHub Desktop.
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