-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathcucumber.js
More file actions
42 lines (39 loc) · 861 Bytes
/
cucumber.js
File metadata and controls
42 lines (39 loc) · 861 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
34
35
36
37
38
39
40
41
42
'use strict';
const common = {
paths: ['features'],
retry: 2,
failFast: true,
forceExit: true,
format: ['progress']
};
const parallel = {
...common,
parallel: 4
};
module.exports = {
default: common,
banner: {
...common,
tags: '(not @ignore) and (not @prod) and @banner'
},
prod: {
...common,
tags: '(not @ignore) and @prod'
},
beta: {
...common,
tags: '(not @ignore) and (not @prod) and (not @x1) and (not @parallel)'
},
'beta-parallel': {
...parallel,
tags: '(not @ignore) and (not @prod) and (not @x1) and @parallel'
},
'beta-x1-parallel': {
...parallel,
tags: '(not @ignore) and (not @prod) and @x1 and @parallel'
},
dev: {
...common,
tags: '(not @ignore) and (not @prod)'
}
};