* Update backlinks service to not rely on revisions * fix: Add missing index for finding backlinks * Debounce revision creation (#1616) * refactor debounce logic to service * Debounce slack notification * Revisions created by service * fix: Revision sidebar latest * test: Add tests for notifications
31 lines
870 B
JavaScript
31 lines
870 B
JavaScript
/* eslint-disable flowtype/require-valid-file-annotation */
|
|
import { Revision } from "../models";
|
|
import { buildDocument } from "../test/factories";
|
|
import { flushdb } from "../test/support";
|
|
|
|
beforeEach(() => flushdb());
|
|
beforeEach(jest.resetAllMocks);
|
|
|
|
describe("#findLatest", () => {
|
|
test("should return latest revision", async () => {
|
|
const document = await buildDocument({
|
|
title: "Title",
|
|
text: "Content",
|
|
});
|
|
await Revision.createFromDocument(document);
|
|
|
|
document.title = "Changed 1";
|
|
await document.save();
|
|
await Revision.createFromDocument(document);
|
|
|
|
document.title = "Changed 2";
|
|
await document.save();
|
|
await Revision.createFromDocument(document);
|
|
|
|
const revision = await Revision.findLatest(document.id);
|
|
|
|
expect(revision.title).toBe("Changed 2");
|
|
expect(revision.text).toBe("Content");
|
|
});
|
|
});
|