UNPKG

@fastly/as-url

Version:

![npm version](https://img.shields.io/npm/v/@fastly/as-url) ![npm downloads per month](https://img.shields.io/npm/dm/@fastly/as-url)

16 lines (12 loc) 347 B
// 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(); }); });