1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Merge pull request #3160 from Budibase/smtp-timeout

Add timeout to node mailer, lower than jest default
This commit is contained in:
Rory Powell 2021-10-26 14:52:48 +01:00 committed by GitHub
commit 62b7787097
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -3,9 +3,6 @@ const { EmailTemplatePurpose } = require("../../../constants")
const nodemailer = require("nodemailer")
const fetch = require("node-fetch")
// need a longer timeout for getting these
jest.setTimeout(30000)
describe("/api/global/email", () => {
let request = setup.getRequest()
let config = setup.getConfig()

View file

@ -234,6 +234,7 @@ class TestConfiguration {
user: "don.bahringer@ethereal.email",
pass: "yCKSH8rWyUPbnhGYk9",
},
connectionTimeout: 1000, // must be less than the jest default of 5000
},
},
null,

View file

@ -35,6 +35,9 @@ function createSMTPTransport(config) {
options.tls = {
rejectUnauthorized: false,
}
if (config.connectionTimeout) {
options.connectionTimeout = config.connectionTimeout
}
} else {
options = {
port: 587,