This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/mailer.test.js

26 lines
601 B
JavaScript

/* eslint-disable flowtype/require-valid-file-annotation */
import mailer from "./mailer";
describe("Mailer", () => {
let fakeMailer = mailer;
let sendMailOutput;
beforeEach(() => {
process.env.URL = "http://localhost:3000";
process.env.SMTP_FROM_EMAIL = "hello@example.com";
jest.resetModules();
fakeMailer.transporter = {
sendMail: (output) => (sendMailOutput = output),
};
});
test("#welcome", () => {
fakeMailer.welcome({
to: "user@example.com",
teamUrl: "http://example.com",
});
expect(sendMailOutput).toMatchSnapshot();
});
});