forked from antolikjan/Arkheia
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprotractor.conf.js
74 lines (59 loc) · 2.31 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
68
69
70
71
72
73
74
// Protractor configuration
// https://github.com/angular/protractor/blob/master/referenceConf.js
"use strict";
var 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.
baseUrl: "http://localhost:" + (process.env.PORT || "9000"),
// Credientials for Saucelabs
sauceUser: process.env.SAUCE_USERNAME,
sauceKey: process.env.SAUCE_ACCESS_KEY,
// 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: {
browserName: "chrome",
name: "Fullstack E2E",
"tunnel-identifier": process.env.TRAVIS_JOB_NUMBER,
build: process.env.TRAVIS_BUILD_NUMBER,
},
// ----- 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/jasmine/jasmine-npm
jasmineNodeOpts: {
defaultTimeoutInterval: 30000,
print: function () {}, // for jasmine-spec-reporter
},
// Prepare environment for tests
params: {
serverConfig: require("./server/config/environment"),
},
onPrepare: function () {
require("babel-register");
var SpecReporter = require("jasmine-spec-reporter");
// add jasmine spec reporter
jasmine.getEnv().addReporter(new SpecReporter({ displayStacktrace: true }));
var serverConfig = config.params.serverConfig;
// Setup mongo for tests
var mongoose = require("mongoose");
mongoose.connect(serverConfig.mongo.uri, serverConfig.mongo.options); // Connect to database
},
};
config.params.baseUrl = config.baseUrl;
exports.config = config;