1 2 3 4 5 6 7 8 9 10
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { assertEquals } from "../testing/asserts.ts"; import * as url from "./url.ts"; Deno.test({ name: "[url] URL", fn() { assertEquals(url.URL, URL); }, });