mirror of
https://github.com/denoland/deno.git
synced 2024-12-02 17:01:14 -05:00
19 lines
375 B
Text
19 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"
|
||
|
}
|
||
|
}
|
||
|
}
|