diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-11-25 11:41:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-25 11:41:21 -0500 |
commit | a4ec7dfae01485290af91c62c1ce17a742dcb104 (patch) | |
tree | ac5f66523e5151b56e10304026ba096871fbb825 /cli/tests/integration/run_tests.rs | |
parent | 00e4c47890e9b5d95557b06f2048d14a79de8401 (diff) |
feat(unstable): --unstable-unsafe-proto (#21313)
Closes https://github.com/denoland/deno/issues/21276
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 0ddedbdfb..4ac18cd50 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -4716,3 +4716,17 @@ itest!(workspaces_nested_member { http_server: true, exit_code: 1, }); + +itest!(unsafe_proto { + args: "run -A run/unsafe_proto/main.js", + output: "run/unsafe_proto/main.out", + http_server: false, + exit_code: 0, +}); + +itest!(unsafe_proto_flag { + args: "run -A --unstable-unsafe-proto run/unsafe_proto/main.js", + output: "run/unsafe_proto/main_with_unsafe_proto_flag.out", + http_server: false, + exit_code: 0, +}); |