This PR moves the entire project to Typescript. Due to the ~1000 ignores this will lead to a messy codebase for a while, but the churn is worth it – all of those ignore comments are places that were never type-safe previously. closes #1282
66 lines
2.2 KiB
TypeScript
66 lines
2.2 KiB
TypeScript
import { Revision } from "@server/models";
|
|
import { buildDocument } from "@server/test/factories";
|
|
import { flushdb } from "@server/test/support";
|
|
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();
|
|
// @ts-expect-error ts-migrate(2345) FIXME: Argument of type '{ name: "documents.update.deboun... Remove this comment to see the full error message
|
|
await Revisions.on({
|
|
name: "documents.update.debounced",
|
|
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);
|
|
});
|
|
|
|
test("should not create a revision if identical to previous", async () => {
|
|
const document = await buildDocument();
|
|
await Revision.createFromDocument(document);
|
|
// @ts-expect-error ts-migrate(2345) FIXME: Argument of type '{ name: "documents.update.deboun... Remove this comment to see the full error message
|
|
await Revisions.on({
|
|
name: "documents.update.debounced",
|
|
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);
|
|
});
|
|
});
|