summaryrefslogtreecommitdiff
path: root/std/node/url_test.ts
blob: a99acc4eb2b0b9365771a92ab87aa79e9b2c6761 (plain)
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);
  },
});