forked from FarseerTeam/Farseer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotractor.conf.js
67 lines (53 loc) · 2.09 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Protractor configuration
// https://github.com/angular/protractor/blob/master/referenceConf.js
'use strict';
var ScreenShotReporter = require('protractor-jasmine2-screenshot-reporter');
exports.config = {
// The timeout for each script run on the browser. This should be longer
// than the maximum time your application needs to stabilize between tasks.
allScriptsTimeout: 110000,
// A base URL for your application under test. Calls to protractor.get()
// with relative paths will be prepended with this.
seleniumAddress: process.env.SELENIUM_ADDRESS,
baseUrl: 'http://' + (process.env.TEST_HOST || 'localhost') +':' + (process.env.PORT || '9001'),
// **DEPRECATED**
// If true, only ChromeDriver will be started, not a Selenium Server.
// This should be replaced with directConnect.
// chromeOnly: true,
// Boolean. If true, Protractor will connect directly to the browser Drivers
// at the locations specified by chromeDriver and firefoxPath. Only Chrome
// and Firefox are supported for direct connect.
directConnect: false,
// list of files / patterns to load in the browser
specs: [
'e2e/**/*.spec.js'
],
// Patterns to exclude.
exclude: [],
// ----- Capabilities to be passed to the webdriver instance ----
//
// For a full list of available capabilities, see
// https://code.google.com/p/selenium/wiki/DesiredCapabilities
// and
// https://code.google.com/p/selenium/source/browse/javascript/webdriver/capabilities.js
capabilities: {
},
// ----- The test framework -----
//
// Jasmine and Cucumber are fully supported as a test and assertion framework.
// Mocha has limited beta support. You will need to include your own
// assertion framework if working with mocha.
framework: 'jasmine2',
// ----- Options to be passed to minijasminenode -----
//
// See the full list at https://github.com/juliemr/minijasminenode
jasmineNodeOpts: {
defaultTimeoutInterval: 8000
},
onPrepare: function () {
jasmine.getEnv().addReporter(new ScreenShotReporter({
dest: './screenshots',
captureOnlyFailedSpecs: true
}));
}
};