habitica/protractor.conf.js

27 lines
734 B
JavaScript
Raw Normal View History

2013-12-25 19:17:05 +00:00
// An example configuration file.
exports.config = {
// The address of a running selenium server.
seleniumAddress: 'http://localhost:4444/wd/hub',
// Capabilities to be passed to the webdriver instance.
capabilities: {
'browserName': 'firefox'
},
// Spec patterns are relative to the current working directly when
// protractor is called.
specs: ['test/e2e/e2e.js'],
// A base URL for your application under test. Calls to protractor.get()
// with relative paths will be prepended with this.
2014-01-01 16:36:02 +00:00
baseUrl: 'http://localhost:3001',
2013-12-25 19:17:05 +00:00
// Options to be passed to Jasmine-node.
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 90000,
isVerbose: true,
displayPendingSpec: true
2013-12-25 19:17:05 +00:00
}
};