mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
a1d0a427e8
Closes #11220 Currently does lint, fmt, and repl
18 lines
344 B
Text
18 lines
344 B
Text
{
|
|
"tempDir": true,
|
|
"tests": {
|
|
"stdin": {
|
|
"args": "run -",
|
|
"input": "const x: string = \"foo\";console.log(x)",
|
|
"output": "foo\n"
|
|
},
|
|
"ext_flag": {
|
|
"args": "run --ext=ts as_ts.js",
|
|
"output": "foo\n"
|
|
},
|
|
"extensionless": {
|
|
"args": "run extensionless",
|
|
"output": "foo\n"
|
|
}
|
|
}
|
|
}
|