import { toRemoteURL } from "./render-utils";
test("parse clone URL", () => {
expect(toRemoteURL("https://gitlab.com/laushinka/my-node-project")).toEqual("gitlab.com/laushinka/my-node-project");
expect(toRemoteURL("https://gitlab.gitlab.gitpod.io/test-group/test-project")).toEqual(
"gitlab.gitlab.gitpod.io/test-group/test-project",
);
});