// frontend/tests/smoke.test.ts import { describe, it, expect } from "vitest"; import { apiUrl } from "@/lib/api"; describe("phase-0 smoke", () => { it("apiUrl 이 /api 프리픽스를 붙인다", () => { expect(apiUrl("/health")).toMatch(/\/api\/health$/); }); });