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
|
{
"tempDir": true,
"tests": {
"global_cache": {
"args": "run --node-modules-dir=none b/main.ts",
"output": "b/main_global_cache.out"
},
"global_cache_bare_specifier_not_in_pkg": {
"args": "run --node-modules-dir=none main.ts",
"output": "main.out"
},
"node_modules_dir": {
"args": "run --node-modules-dir=auto b/main.ts",
"output": "b/main_node_modules_dir.out"
},
"byonm": {
"steps": [{
"args": "install",
"output": "[WILDCARD]"
}, {
"args": "run b/main.ts",
"output": "b/main_byonm.out"
}]
},
"exports_sub_path_not_exists": {
// TODO(2.0): this test appears legitimately broken
"ignore": true,
"args": "run b/exports-sub-path-not-exists.ts",
"output": "b/exports-sub-path-not-exists.out",
"exitCode": 1
},
"no_exports_sub_path_not_exists": {
// TODO(2.0): this test appears legitimately broken
"ignore": true,
"args": "run b/no-exports-sub-path-not-exists.ts",
"output": "b/no-exports-sub-path-not-exists.out",
"exitCode": 1
}
}
}
|