-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.js
More file actions
33 lines (31 loc) · 666 Bytes
/
conf.js
File metadata and controls
33 lines (31 loc) · 666 Bytes
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
// conf.js
exports.config = {
framework: 'jasmine',
seleniumAddress: 'http://localhost:4445/wd/hub',
specs: [
//'specs/smoke_test_spec.js',
'specs/product_page_spec.js',
// 'specs/composite_products_spec.js',
//'specs/auchan_test_spec.js',
// 'specs/async_test_spec.js',
],
multiCapabilities: [
// {
// browserName: 'firefox'
// },
{
browserName: 'chrome',
chromeOptions: {
args: [
//'show-fps-counter=true',
'--start-maximized'
],
}
}
],
jasmineNodeOpts: {
defaultTimeoutInterval: 15000,//300000,
showColors: true,
isVerbose: true
}
}