mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
19 lines
344 B
Text
19 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"
|
||
|
}
|
||
|
}
|
||
|
}
|