diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-01-25 08:12:10 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 22:12:10 +0100 |
commit | fc176c4dea7463d587a1e921780cce55552e0c86 (patch) | |
tree | 88e996655b20e796571db38896d4db27fcfe54b7 /cli/tests/integration/worker_tests.rs | |
parent | 176118a0468c5b4f2117d18271d814000d4752b2 (diff) |
feat: deprecate `Deno.{Conn,TcpConn,TlsConn,UnixConn}.rid` (#22077)
For removal in Deno v2.
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests/integration/worker_tests.rs')
-rw-r--r-- | cli/tests/integration/worker_tests.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/integration/worker_tests.rs b/cli/tests/integration/worker_tests.rs index 573863d4f..cbd63d809 100644 --- a/cli/tests/integration/worker_tests.rs +++ b/cli/tests/integration/worker_tests.rs @@ -1,10 +1,10 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. itest!(workers { - args: "test --reload --location http://127.0.0.1:4545/ -A --unstable workers/test.ts", - output: "workers/test.ts.out", - http_server: true, - }); + args: "test --reload --location http://127.0.0.1:4545/ -A --unstable-worker-options workers/test.ts", + output: "workers/test.ts.out", + http_server: true, +}); itest!(worker_error { args: "run -A workers/worker_error.ts", |