import { describe, expect, it } from "vitest"; // Phase 0 smoke test — proves the Vitest harness is wired into CI. // Replace/extend with real coverage starting Phase 1 (template seeding) // and Phase 2 (lib/time.ts, services/scheduling.server.ts). describe("test harness", () => { it("runs", () => { expect(1 + 1).toBe(2); }); });