diff --git a/server/queues/processors/revisions.test.ts b/server/queues/processors/revisions.test.ts index 4d50765bd..514594b36 100644 --- a/server/queues/processors/revisions.test.ts +++ b/server/queues/processors/revisions.test.ts @@ -6,25 +6,7 @@ import RevisionsService from "./revisions"; const Revisions = new RevisionsService(); beforeEach(() => flushdb()); beforeEach(jest.resetAllMocks); -describe("documents.publish", () => { - test("should create a revision", async () => { - const document = await buildDocument(); - // @ts-expect-error ts-migrate(2345) FIXME: Argument of type '{ name: "documents.publish"; doc... Remove this comment to see the full error message - await Revisions.on({ - name: "documents.publish", - documentId: document.id, - collectionId: document.collectionId, - teamId: document.teamId, - actorId: document.createdById, - }); - const amount = await Revision.count({ - where: { - documentId: document.id, - }, - }); - expect(amount).toBe(1); - }); -}); + describe("documents.update.debounced", () => { test("should create a revision", async () => { const document = await buildDocument(); diff --git a/server/queues/processors/revisions.ts b/server/queues/processors/revisions.ts index 772a10f49..9c0389aa4 100644 --- a/server/queues/processors/revisions.ts +++ b/server/queues/processors/revisions.ts @@ -6,7 +6,6 @@ import { DocumentEvent, RevisionEvent } from "../../types"; export default class RevisionsProcessor { async on(event: DocumentEvent | RevisionEvent) { switch (event.name) { - case "documents.publish": case "documents.update.debounced": { const document = await Document.findByPk(event.documentId); invariant(document, "Document should exist");