10 lines
444 B
TypeScript
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");
|
|
});
|
|
});
|