summaryrefslogtreecommitdiff
path: root/std/node/url_test.ts
blob: 7da8e3bb4e6b55293fde1559cb956bfeca96b1c5 (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2018-2021 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);
  },
});