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"); }); });