describe("removeTrailingSlash", () => {
  test("path/ -> path", () => {
    expect(removeTrailingSlash("path/")).toBe("path");
  });