From d54539e65b55dd8478afb0d1fbcae22dfa9ddbaa Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 4 Feb 2025 10:41:35 -0800 Subject: [PATCH] add test cases --- test/resolvers/MutationResolverTests.test.ts | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/resolvers/MutationResolverTests.test.ts diff --git a/test/resolvers/MutationResolverTests.test.ts b/test/resolvers/MutationResolverTests.test.ts new file mode 100644 index 0000000..4d52985 --- /dev/null +++ b/test/resolvers/MutationResolverTests.test.ts @@ -0,0 +1,22 @@ +import { setupTestServerContext } from "../testHelpers/apolloTestServerHelpers"; +import { describe, it } from "@jest/globals"; + +describe("MutationResolvers", () => { + const context = setupTestServerContext() + + describe("scheduleNotification", () => { + it("adds a notification to the notification service", async () => { + + }); + + it("ensures that notifications when the ETA changes", async () => { + + }); + }); + + describe("cancelNotification", () => { + it("removes the notification from the notification service", async () => { + + }); + }); +});