mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
7477c2d706
Closes #24099
15 lines
334 B
Text
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"
|
|
}
|
|
}
|
|
}
|