1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00
denoland-deno/tests/specs/serve/basic/__test__.jsonc
2024-09-12 23:32:28 +00:00

15 lines
334 B
Text

{
"tempDir": true,
"tests": {
"basic_win": {
"if": "windows",
"args": "serve --check --host 0.0.0.0 --port 12345 main.ts",
"output": "main.out"
},
"basic_not_win": {
"if": "unix",
"args": "serve --check --host 0.0.0.0 --port 12345 main.ts",
"output": "main_not_win.out"
}
}
}