blob: 963873df33ffb59c796e3c7e7e3a843f02a3ebee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"tests": {
"reporter_dot": {
"args": "test --hide-stacktraces --reporter=dot main.js",
"output": "dot.out",
"exitCode": 1
},
"reporter_junit": {
"args": "test --hide-stacktraces --reporter=junit main.js",
"output": "junit.out",
"exitCode": 1
},
"reporter_pretty": {
"args": "test --hide-stacktraces main.js",
"output": "pretty.out",
"exitCode": 1
},
"reporter_tap": {
"args": "test --hide-stacktraces --reporter=tap main.js",
"output": "tap.out",
"exitCode": 1
}
}
}
|