Files
outline/server/queues/tasks/InviteReminderTask.test.ts
2023-09-06 14:19:21 -07:00

35 lines
906 B
TypeScript

import { subDays } from "date-fns";
import InviteReminderEmail from "@server/emails/templates/InviteReminderEmail";
import { buildInvite } from "@server/test/factories";
import InviteReminderTask from "./InviteReminderTask";
describe("InviteReminderTask", () => {
it("should not destroy documents not deleted", async () => {
const spy = jest.spyOn(InviteReminderEmail.prototype, "schedule");
// too old
await buildInvite({
createdAt: subDays(new Date(), 3.5),
});
// too new
await buildInvite({
createdAt: new Date(),
});
// should send reminder
await buildInvite({
createdAt: subDays(new Date(), 2.5),
});
const task = new InviteReminderTask();
await task.perform();
// running twice to make sure the email is only sent once
await task.perform();
expect(spy).toHaveBeenCalledTimes(1);
spy.mockRestore();
});
});