This commit is contained in:
Leandro Facchinetti 2020-03-22 21:27:03 -04:00
parent 96b0b38a93
commit 38d36fe95c
1 changed files with 2 additions and 2 deletions

View File

@ -50,10 +50,10 @@ describe("receive email", () => {
expect(feed).not.toMatch("REPETITION 0"); expect(feed).not.toMatch("REPETITION 0");
}); });
test("non-existing address", async () => { test("nonexistent address", async () => {
await emailClient.sendMail({ await emailClient.sendMail({
from: "publisher@example.com", from: "publisher@example.com",
to: "non-existing@kill-the-newsletter.com", to: "nonexistent@kill-the-newsletter.com",
subject: "New Message", subject: "New Message",
html: "<p>HTML content</p>" html: "<p>HTML content</p>"
}); });