mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
21 lines
543 B
Text
21 lines
543 B
Text
|
{
|
||
|
"tests": {
|
||
|
"basic": {
|
||
|
"args": "run --env=./env --allow-env env_file.ts",
|
||
|
"output": "env_file.out"
|
||
|
},
|
||
|
"missing": {
|
||
|
"args": "run --env=./missing --allow-env env_file.ts",
|
||
|
"output": "env_file_missing.out"
|
||
|
},
|
||
|
"multiple": {
|
||
|
"args": "run --env=./env --env=./env_one --env=./env_two --allow-env env_file.ts",
|
||
|
"output": "multiple_env_file.out"
|
||
|
},
|
||
|
"unparseable": {
|
||
|
"args": "run --env=./env_unparseable --allow-env env_file.ts",
|
||
|
"output": "env_unparseable.out"
|
||
|
}
|
||
|
}
|
||
|
}
|