Files
FolderGameChallenge/tests/api/health-route.test.ts
jimmy 1957e96363 Add folder game, file browser UI, and automated tests.
Introduces a localStorage-backed messy-desktop challenge with sub-steps,
drag-and-drop and Places/Back navigation, IBM Plex Mono, and a /api/health
endpoint. Adds Vitest coverage for the API and level logic plus Playwright
smoke tests.

Made-with: Cursor
2026-04-11 18:22:50 +12:00

12 lines
317 B
TypeScript

import { describe, expect, it } from "vitest";
import { GET } from "~/app/api/health/route";
describe("GET /api/health", () => {
it("returns 200 and status ok", async () => {
const res = await GET();
expect(res.status).toBe(200);
await expect(res.json()).resolves.toEqual({ status: "ok" });
});
});