import { describe, it } from "@jest/globals"; import { setupTestServerHolder } from "../testHelpers/apolloTestServerHelpers"; describe("MutationResolvers", () => { const testServerHolder = setupTestServerHolder() describe("scheduleNotification", () => { it("adds a notification to the notification service", async () => { }); it("ensures that notifications fire when the ETA changes to below threshold", async () => { }); }); describe("cancelNotification", () => { it("removes the notification from the notification service", async () => { }); }); });