blob: 6e3ffb044eec7dc1b10c8500d31029d980936656 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"tests": {
"assertion": {
// TODO(2.0): disable import assertion support in TS.
"ignore": true,
"steps": [{
"args": "run assertion.ts",
"exitCode": 1,
"output": "assertion.out"
}, {
// should output the same because the emit won't be cached
"args": "run assertion.ts",
"exitCode": 1,
"output": "assertion.out"
}]
},
"with": {
"args": "run with.ts",
"output": "with.out"
}
}
}
|