diff --git a/test/resolvers/MutationResolverTests.test.ts b/test/resolvers/MutationResolverTests.test.ts index 2c84cce..d4f5318 100644 --- a/test/resolvers/MutationResolverTests.test.ts +++ b/test/resolvers/MutationResolverTests.test.ts @@ -132,7 +132,7 @@ describe("MutationResolvers", () => { const notificationResponse = response.body.singleResult.data?.cancelNotification as any; expect(notificationResponse.success).toBe(true); - expect(notificationResponse.data).toStrictEqual(notificationInput); + expect(notificationResponse.data).toEqual(notificationInput); expect(context.notificationService.isNotificationScheduled(notificationInput)).toBe(false); });