mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
091346dfe8
* wip * Remove obsolete snapshots * simplify * chore(test): Convert mocks to TypeScript and tighten fetch mock types Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * Remove unneccessary patches * Migrate to msw instead of custom fetch mock * Address PR review comments - Split chained vi.useFakeTimers().setSystemTime() into separate calls. - Switch test setup to dynamic imports so EventEmitter.defaultMaxListeners assignment runs before module init (static imports were hoisted above it). - Drop redundant NODE_ENV guard in monkeyPatchSequelizeErrorsForJest; its sole caller already gates on env.isTest. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
35 lines
892 B
TypeScript
35 lines
892 B
TypeScript
import { subHours } from "date-fns";
|
|
import InviteReminderEmail from "@server/emails/templates/InviteReminderEmail";
|
|
import { buildInvite } from "@server/test/factories";
|
|
import InviteReminderTask from "./InviteReminderTask";
|
|
|
|
describe("InviteReminderTask", () => {
|
|
it("should send reminder emails", async () => {
|
|
const spy = vi.spyOn(InviteReminderEmail.prototype, "schedule");
|
|
|
|
// too old
|
|
await buildInvite({
|
|
createdAt: subHours(new Date(), 84),
|
|
});
|
|
|
|
// too new
|
|
await buildInvite({
|
|
createdAt: new Date(),
|
|
});
|
|
|
|
// should send reminder
|
|
await buildInvite({
|
|
createdAt: subHours(new Date(), 60),
|
|
});
|
|
|
|
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();
|
|
});
|
|
});
|