mirror of
https://github.com/denoland/deno.git
synced 2025-12-23 08:48:24 +00:00
Integrated only with deno check (and test, `run --check`, etc) currently. All spec tests for deno check pass except for 3, which i've disabled --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: Divy Srivastava <me@littledivy.com>
35 lines
755 B
JSON
35 lines
755 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
|
|
}
|
|
},
|
|
"variants": {
|
|
"tsgo": {
|
|
"use_tsgo": "1"
|
|
},
|
|
"tsc": {
|
|
"use_tsgo": ""
|
|
}
|
|
},
|
|
"envs": {
|
|
"DENO_UNSTABLE_TSGO": "${use_tsgo}"
|
|
}
|
|
}
|