mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
41f8988dc7
Fixes #24687 --------- Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
15 lines
318 B
Text
15 lines
318 B
Text
{
|
|
"tempDir": true,
|
|
"tests": {
|
|
"basic_win": {
|
|
"if": "windows",
|
|
"args": "serve --host 0.0.0.0 --port 12345 main.ts",
|
|
"output": "main.out"
|
|
},
|
|
"basic_not_win": {
|
|
"if": "unix",
|
|
"args": "serve --host 0.0.0.0 --port 12345 main.ts",
|
|
"output": "main_not_win.out"
|
|
}
|
|
}
|
|
}
|