Files
project-inter-server/test/resolvers/MutationResolverTests.test.ts

23 lines
593 B
TypeScript

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 () => {
});
});
});