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

20 lines
441 B
JavaScript

/* eslint-disable flowtype/require-valid-file-annotation */
import { Mailer } from './mailer';
describe('Mailer', () => {
let fakeMailer;
let sendMailOutput;
beforeEach(() => {
fakeMailer = new Mailer();
fakeMailer.transporter = {
sendMail: output => (sendMailOutput = output),
};
});
test('#welcome', () => {
fakeMailer.welcome('user@example.com');
expect(sendMailOutput).toMatchSnapshot();
});
});