mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-30 20:52:29 +01:00
25 lines
683 B
JavaScript
25 lines
683 B
JavaScript
// 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.
|
|
baseUrl: 'http://localhost:3001',
|
|
|
|
// Options to be passed to Jasmine-node.
|
|
jasmineNodeOpts: {
|
|
showColors: true,
|
|
defaultTimeoutInterval: 30000
|
|
}
|
|
};
|