diff options
| author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-09-12 16:32:28 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-12 23:32:28 +0000 |
| commit | 7477c2d70639962a40c7333e766b4a4b4aa75ddd (patch) | |
| tree | e03ec832e9d7a7ef1d40575210aba46b3a83632a /tests/specs/serve/basic/__test__.jsonc | |
| parent | 018329a4d30681c953670cebe35a6e9dbf9bc5bb (diff) | |
feat(serve): Support second parameter in deno serve (#25606)
Closes #24099
Diffstat (limited to 'tests/specs/serve/basic/__test__.jsonc')
| -rw-r--r-- | tests/specs/serve/basic/__test__.jsonc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/specs/serve/basic/__test__.jsonc b/tests/specs/serve/basic/__test__.jsonc index a8eaca0b6..be63f793a 100644 --- a/tests/specs/serve/basic/__test__.jsonc +++ b/tests/specs/serve/basic/__test__.jsonc @@ -3,12 +3,12 @@ "tests": { "basic_win": { "if": "windows", - "args": "serve --host 0.0.0.0 --port 12345 main.ts", + "args": "serve --check --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", + "args": "serve --check --host 0.0.0.0 --port 12345 main.ts", "output": "main_not_win.out" } } |
