mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
a7c8bb1596
Closes #24668 Closes #20813 --------- Co-authored-by: David Sherret <dsherret@gmail.com>
24 lines
596 B
Text
24 lines
596 B
Text
{
|
|
"tests": {
|
|
"star": {
|
|
"args": "check *.ts",
|
|
"output": "Check [WILDLINE]main.ts\n",
|
|
"exitCode": 0
|
|
},
|
|
"star_not_found": {
|
|
"args": "check *.js",
|
|
"output": "Warning No matching files found.\n",
|
|
"exitCode": 0
|
|
},
|
|
"glob_star": {
|
|
"args": "check **/*.ts",
|
|
"output": "Check [WILDLINE]main.ts\nCheck [WILDLINE]sub_dir/main.ts\nerror: TS2322[WILDCARD]",
|
|
"exitCode": 1
|
|
},
|
|
"sub_dir": {
|
|
"args": "check sub_dir",
|
|
"output": "Check [WILDLINE]sub_dir/main.ts\nerror: TS2322[WILDCARD]",
|
|
"exitCode": 1
|
|
}
|
|
}
|
|
}
|