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/cert/cafile_compile/__test__.jsonc
2024-05-03 00:43:12 +00:00

22 lines
480 B
Text

{
"tempDir": true,
"steps": [{
"args": "compile --allow-net --cert ../RootCA.pem cafile_ts_fetch.ts",
"cwd": "cert",
"output": "[WILDCARD]"
}, {
"if": "windows",
"commandName": "./cafile_ts_fetch.exe",
"cwd": "cert",
"args": [],
"flaky": true,
"output": "[WILDCARD]\nHello\n"
}, {
"if": "unix",
"commandName": "./cafile_ts_fetch",
"cwd": "cert",
"args": [],
"flaky": true,
"output": "[WILDCARD]\nHello\n"
}]
}