From 4c4bd0fc4aed7c3aba48ac578ee705fbe15ea024 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 4 Feb 2025 11:41:57 -0800 Subject: [PATCH] swap toStrictEqual to toEqual for cancelNotification test --- test/resolvers/MutationResolverTests.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); });