You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
487 B
JavaScript
22 lines
487 B
JavaScript
// An example configuration file.
|
|
exports.config = {
|
|
directConnect: true,
|
|
|
|
// Capabilities to be passed to the webdriver instance.
|
|
capabilities: {
|
|
'browserName': 'chrome'
|
|
},
|
|
|
|
// Framework to use. Jasmine is recommended.
|
|
framework: 'jasmine',
|
|
|
|
// Spec patterns are relative to the current working directory when
|
|
// protractor is called.
|
|
specs: ['example_spec.js'],
|
|
|
|
// Options to be passed to Jasmine.
|
|
jasmineNodeOpts: {
|
|
defaultTimeoutInterval: 30000
|
|
}
|
|
};
|