-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcucumber.js
More file actions
52 lines (40 loc) · 1018 Bytes
/
Copy pathcucumber.js
File metadata and controls
52 lines (40 loc) · 1018 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
43
44
45
46
47
48
49
50
51
52
module.exports = {
default: {
formatOptions: {
snippetInterface: "async-await"
},
requireModule: ["ts-node/register"],
require: [
'src/test/hooks/**/*.ts',
'src/world/**/*.ts',
'src/test/step-definition/**/*.ts'
],
paths: ['src/test/features/**/*.feature'],
publishQuiet: true,
dryRun: false,
format: [
'snippets',
'progress',
'json:reports/cucumber-json/cucumber-report.json',
'html:reports/cucumber-html/cucumber-report.html',
'rerun:rerun/@rerun.txt'
],
parallel: 1
},
rerun: {
requireModule: ["ts-node/register"],
require: [
'src/test/hooks/**/*.ts',
'src/world/**/*.ts',
'src/test/step-definition/**/*.ts'
],
paths: ['rerun/@rerun.txt'],
format: [
'progress',
'json:reports/rerun-cucumber-json/cucumber-report.json',
'html:reports/rerun-cucumber-html/cucumber-report.html',
'rerun:rerun/@rerun.txt'
],
parallel: 1
}
};