13 lines
407 B
TypeScript
13 lines
407 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { buildApiUrl } from "./url";
|
|
|
|
describe("buildApiUrl", () => {
|
|
it("joins base url and relative path without duplicate slashes", () => {
|
|
expect(buildApiUrl("/lok/open-hours")).toBe("/api/lok/open-hours");
|
|
});
|
|
|
|
it("accepts path without leading slash", () => {
|
|
expect(buildApiUrl("lok/open-hours/1")).toBe("/api/lok/open-hours/1");
|
|
});
|
|
});
|