dnd-hub/apps/server/test/gameNightService.test.ts
2026-03-16 22:15:15 -04:00

10 lines
444 B
TypeScript

import { describe, expect, it } from "vitest";
import { gameNightService } from "../src/services/gameNightService.js";
describe("gameNightService", () => {
it("exposes required scheduler methods", () => {
expect(typeof gameNightService.getOrCreateForDate).toBe("function");
expect(typeof gameNightService.selectCampaignForDate).toBe("function");
expect(typeof gameNightService.runMorningNotification).toBe("function");
});
});