blob: c0a92bfc310487299666e1fe7f45e8cd93732cd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
// won't need --allow-import because it's implied from the main module
"tests": {
"run": {
"args": "run http://localhost:4545/run/002_hello.ts",
"output": "Download http://localhost:4545/run/002_hello.ts\nHello World\n"
},
"cache": {
"args": "cache http://localhost:4545/run/002_hello.ts",
"output": "Download http://localhost:4545/run/002_hello.ts\n"
},
"check": {
"args": "check http://localhost:4545/run/002_hello.ts",
"output": "Download http://localhost:4545/run/002_hello.ts\nCheck http://localhost:4545/run/002_hello.ts\n"
}
}
}
|