@fastly/as-url
Version:
 
16 lines (12 loc) • 347 B
text/typescript
// Copyright 2020 Fastly, Inc.
import { URL } from "../url";
describe("URL", () => {
test("constructor", () => {
let url = new URL("https://fastly.com");
expect(url).toBeTruthy();
});
test("constructor with relative url", () => {
let url = new URL("./some/path", "https://fastly.com");
expect(url).toBeTruthy();
});
});