chore: More flakey test improvements (#5801)

This commit is contained in:
Tom Moor
2023-09-09 18:30:19 -04:00
committed by GitHub
parent 7270e65f0c
commit 80ef0a38d6
37 changed files with 245 additions and 210 deletions

View File

@@ -1,5 +1,5 @@
import { Event } from "@server/models";
import { buildDocument, buildUser } from "@server/test/factories";
import { findLatestEvent } from "@server/test/support";
import commentCreator from "./commentCreator";
describe("commentCreator", () => {
@@ -32,7 +32,9 @@ describe("commentCreator", () => {
ip,
});
const event = await findLatestEvent();
const event = await Event.findLatest({
teamId: user.teamId,
});
expect(comment.documentId).toEqual(document.id);
expect(comment.createdById).toEqual(user.id);
expect(event!.name).toEqual("comments.create");