mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
a1d0a427e8
Closes #11220 Currently does lint, fmt, and repl
18 lines
375 B
Text
18 lines
375 B
Text
{
|
|
"tempDir": true,
|
|
"tests": {
|
|
"stdin": {
|
|
"args": "fmt -",
|
|
"input": "const x: string = \"foo\";",
|
|
"output": "const x: string = \"foo\";\n"
|
|
},
|
|
"ext_flag": {
|
|
"args": "fmt --ext=ts as_ts.js",
|
|
"output": "Checked 1 file\n"
|
|
},
|
|
"extensionless": {
|
|
"args": "fmt extensionless",
|
|
"output": "Checked 1 file\n"
|
|
}
|
|
}
|
|
}
|