summaryrefslogtreecommitdiff
path: root/std/node/url_test.ts
blob: 5e64b6295900a1706401883e84bd0ade5f7ad1c2 (plain)
1
2
3
4
5
6
7
8
9
import { assertEquals } from "../testing/asserts.ts";
import * as url from "./url.ts";

Deno.test({
  name: "[url] URL",
  fn() {
    assertEquals(url.URL, URL);
  },
});