diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-06-14 19:33:24 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-15 01:33:24 +0000 |
commit | 3d71c36888018d5154b42997bb64adc2892c034d (patch) | |
tree | 7e48d5bf3dcc092aacc383974589ca8815d2bc0c | |
parent | c71c497b1b315d5c6c36feada06961f8a341aa76 (diff) |
chore(ext/net): ignore startTls test (#19515)
-rw-r--r-- | cli/tests/unit/tls_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tests/unit/tls_test.ts b/cli/tests/unit/tls_test.ts index c8dd7ddbe..11691379c 100644 --- a/cli/tests/unit/tls_test.ts +++ b/cli/tests/unit/tls_test.ts @@ -1081,7 +1081,8 @@ Deno.test( ); Deno.test( - { permissions: { read: true, net: true } }, + // Ignored because gmail appears to reject us on CI sometimes + { ignore: true, permissions: { read: true, net: true } }, async function startTls() { const hostname = "smtp.gmail.com"; const port = 587; |