-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprotractor.conf.js
37 lines (30 loc) · 1.08 KB
/
protractor.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
var config = require('./gulp_config.js');
exports.config = {
// The address of a running selenium server. Comment this out if you want the selenium server tp start automatically.
//'seleniumAddress': 'http://localhost:4444/wd/hub',
// The base url your app is served on.
baseUrl: 'http://localhost:3000/',
// Jasmine is fully supported as a test and assertion framework.
framework: 'jasmine',
// Capabilities to be passed to the webdriver instance.
'capabilities': {
'browserName': 'chrome'
},
// Spec patterns are relative to the location of this config.
specs: [
config.protractor.sources
],
stackTrace: false,
// Options to be passed to minijasminenode.
// See the full list at https://github.com/juliemr/minijasminenode/tree/jasmine1
jasmineNodeOpts: {
// If true, display spec names.
isVerbose: false,
// If true, print colors to the terminal.
showColors: true,
// If true, include stack traces in failures.
includeStackTrace: false,
// Default time to wait in ms before a test fails.
defaultTimeoutInterval: 30000,
}
};