mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
36 lines
891 B
Text
36 lines
891 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"tests": {
|
||
|
"global_cache": {
|
||
|
"args": "run --node-modules-dir=false b/main.ts",
|
||
|
"output": "b/main_global_cache.out"
|
||
|
},
|
||
|
"node_modules_dir": {
|
||
|
"args": "run --node-modules-dir=true b/main.ts",
|
||
|
"output": "b/main_node_modules_dir.out"
|
||
|
},
|
||
|
"byonm": {
|
||
|
"envs": {
|
||
|
"DENO_FUTURE": "1"
|
||
|
},
|
||
|
"steps": [{
|
||
|
"args": "install",
|
||
|
"output": "[WILDCARD]"
|
||
|
}, {
|
||
|
"args": "run b/main.ts",
|
||
|
"output": "b/main_byonm.out"
|
||
|
}]
|
||
|
},
|
||
|
"exports_sub_path_not_exists": {
|
||
|
"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": {
|
||
|
"args": "run b/no-exports-sub-path-not-exists.ts",
|
||
|
"output": "b/no-exports-sub-path-not-exists.out",
|
||
|
"exitCode": 1
|
||
|
}
|
||
|
}
|
||
|
}
|