1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00
denoland-deno/tests/specs/cert/cafile_install/__test__.jsonc

30 lines
528 B
Text
Raw Normal View History

{
"tempDir": true,
"steps": [{
"args": [
"install",
"--cert",
"RootCA.pem",
"-n",
"echo_test",
"--root",
"$PWD",
"-g",
"https://localhost:5545/echo.ts"
],
"output": "[WILDCARD]"
}, {
"if": "windows",
"commandName": "./bin/echo_test.cmd",
"flaky": true,
"args": ["foo"],
"output": "[WILDCARD]foo"
}, {
"if": "unix",
"commandName": "./bin/echo_test",
"flaky": true,
"args": ["foo"],
"output": "[WILDCARD]foo"
}]
}