mirror of
https://github.com/denoland/deno.git
synced 2025-03-12 07:07:43 -04:00
24 lines
594 B
JSON
24 lines
594 B
JSON
{
|
|
"tests": {
|
|
"check": {
|
|
"args": "check --allow-import main.ts",
|
|
"output": "main.out",
|
|
"exitCode": 1
|
|
},
|
|
"run": {
|
|
"args": "run --check --allow-import main.ts",
|
|
"output": "main_run.out",
|
|
"exitCode": 1
|
|
},
|
|
"missing_local_root": {
|
|
"args": "check --allow-import non_existent.ts",
|
|
"output": "missing_local_root.out",
|
|
"exitCode": 1
|
|
},
|
|
"missing_remote_root": {
|
|
"args": "check --allow-import http://localhost:4545/missing_non_existent.ts",
|
|
"output": "missing_remote_root.out",
|
|
"exitCode": 1
|
|
}
|
|
}
|
|
}
|