mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
28 lines
516 B
Text
28 lines
516 B
Text
{
|
|
"tempDir": true,
|
|
"steps": [{
|
|
"args": [
|
|
"install",
|
|
"--cert",
|
|
"RootCA.pem",
|
|
"-n",
|
|
"echo_test",
|
|
"--root",
|
|
"$PWD",
|
|
"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"
|
|
}]
|
|
}
|