We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b138ff5 commit a09ae95Copy full SHA for a09ae95
src/utils/parse-endpoint.spec.ts
@@ -14,6 +14,7 @@ describe("parseEndpoint", () => {
14
it("does not parse invalid hosts", () => {
15
expect(() => parseEndpoint("gitpod")).to.throw(TypeError);
16
expect(() => parseEndpoint("ftp://gitpod.io")).to.throw(TypeError);
17
+ expect(() => parseEndpoint("https://")).to.throw(TypeError);
18
});
19
20
0 commit comments