-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconf.js
34 lines (31 loc) · 915 Bytes
/
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
const JasmineConsoleReporter = require('jasmine-console-reporter');
exports.config = {
framework: 'jasmine2',
baseUrl: 'https://frank2example.frankframework.org/iaf/gui',
directConnect: true,
capabilities: {
browserName: 'chrome',
chromeOptions:{
args:[
"--headless",
"--disable-gpu",
"--window-size=1920,1080",
"--no-sandbox",
"--disable-dev-shm-usage",
"--disable-extensions",
]
}
},
specs: ['*.spec.js'],
allScriptsTimeout: 120000,
jasmineNodeOpts: {
defaultTimeoutInterval: 30000000
},
onPrepare: function(){
jasmine.getEnv().addReporter(new JasmineConsoleReporter({
emoji: true
}));
jasmine.getEnv().defaultTimeoutInterval = 120000;
browser.get('#!/status');
}
}