mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
|
import { expect, test } from "vitest";
|
||
|
import { buildURL } from "../src/js/api";
|
||
|
|
||
|
test("builds URLs correctly"),
|
||
|
() => {
|
||
|
const params = { host: "127.0.0.1", port: 123 };
|
||
|
expect(buildURL(params, "/config")).toBe("http://127.0.0.1/config");
|
||
|
};
|