Files
project-inter-server/test/resolvers/MutationResolverTests.test.ts
2025-02-04 10:43:33 -08:00

23 lines
586 B
TypeScript

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 fire when the ETA changes to below threshold", async () => {
});
});
describe("cancelNotification", () => {
it("removes the notification from the notification service", async () => {
});
});
});