diff options
author | Luca Casonato <hello@lcas.dev> | 2021-07-22 12:28:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 12:28:46 +0200 |
commit | 78fc9a4c600d28bf4c899695076f0bce159fb7a6 (patch) | |
tree | 9277a4dbf79c5d7205d25c44cff70b1e4212dbff /cli/tests/integration/run_tests.rs | |
parent | 7d151efc683e512386e4ad95bc01259b536d28fc (diff) |
fix: support --cert flag for tls connect APIs (#11484)
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 88b7f5928..4ca0616f7 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -1785,3 +1785,13 @@ mod permissions { exit_code: 1, }); } + +itest!(tls_starttls { + args: "run --quiet --reload --allow-net --allow-read --unstable --cert tls/RootCA.pem tls_starttls.js", + output: "tls.out", +}); + +itest!(tls_connecttls { + args: "run --quiet --reload --allow-net --allow-read --cert tls/RootCA.pem tls_connecttls.js", + output: "tls.out", +}); |