You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// 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$/);
|
|
});
|
|
});
|