summaryrefslogtreecommitdiff
path: root/cli/tests/integration/node_unit_tests.rs
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-02-23 12:27:29 +0900
committerGitHub <noreply@github.com>2023-02-23 12:27:29 +0900
commit3ca23cb642f0320e675ef2d0d51e9eb529171b53 (patch)
tree434602616b8c30d33d304e35562ae20f1bf2ab7b /cli/tests/integration/node_unit_tests.rs
parent93a712fbace4e044ca7dff11209bf83dcb5c6de6 (diff)
test(ext/node): add tls_test (#17871)
Diffstat (limited to 'cli/tests/integration/node_unit_tests.rs')
-rw-r--r--cli/tests/integration/node_unit_tests.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/integration/node_unit_tests.rs b/cli/tests/integration/node_unit_tests.rs
index d29d988ba..d2a6f6ec8 100644
--- a/cli/tests/integration/node_unit_tests.rs
+++ b/cli/tests/integration/node_unit_tests.rs
@@ -10,6 +10,10 @@ fn node_unit_tests() {
.current_dir(util::root_path())
.arg("test")
.arg("--unstable")
+ // TODO(kt3k): This option is required to pass tls_test.ts,
+ // but this shouldn't be necessary. tls.connect currently doesn't
+ // pass hostname option correctly and it causes cert errors.
+ .arg("--unsafely-ignore-certificate-errors")
.arg("-A")
.arg(util::tests_path().join("unit_node"))
.spawn()