1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/specs/run/env_file/__test__.jsonc

21 lines
543 B
Text
Raw Normal View History

{
"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"
}
}
}