blob: 64206216905d9f6f7e05e9583e5f5843b284039a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
"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"
}
}
}
|