diff --git a/apps/web/test/lib/team-event-types.test.ts b/apps/web/test/lib/team-event-types.test.ts index 4e5506f5c0..608fc151f4 100644 --- a/apps/web/test/lib/team-event-types.test.ts +++ b/apps/web/test/lib/team-event-types.test.ts @@ -13,18 +13,21 @@ it("can find lucky user with maximize availability", async () => { email: "test@example.com", bookings: [ { - createdAt: new Date("2022-01-25"), + createdAt: new Date("2022-01-25T05:30:00.000Z"), + }, + { + createdAt: new Date("2022-01-25T06:30:00.000Z"), }, ], }); const user2 = buildUser({ - id: 1, - username: "test", - name: "Test User", - email: "test@example.com", + id: 2, + username: "test2", + name: "Test User 2", + email: "tes2t@example.com", bookings: [ { - createdAt: new Date("2022-01-25"), + createdAt: new Date("2022-01-25T04:30:00.000Z"), }, ], });