devserver/src/server.test.ts

9 lines
245 B
TypeScript
Raw Normal View History

2021-09-06 22:16:35 +00:00
import { describe, expect, it } from "../deps.testing.ts";
import { normalizeURL } from "./server.ts";
describe("server", () => {
it("normalizes URLs", () => {
expect(normalizeURL("/dir/file.txt?t=1")).toEqual("/dir/file.txt");
});
});