1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 12:58:54 -05:00

chore(ext/net): ignore startTls test (#19515)

This commit is contained in:
Matt Mastracci 2023-06-14 19:33:24 -06:00 committed by GitHub
parent c71c497b1b
commit 3d71c36888
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;