summaryrefslogtreecommitdiff
path: root/cli/js/tests/dom_exception_test.ts
blob: 2eb7633e10848b7e78a4c73d0e107606fb208c4c (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { unitTest, assertEquals, assert } from "./test_util.ts";

unitTest(function testDomError() {
  const de = new DOMException("foo", "bar");
  assert(de);
  assertEquals(de.message, "foo");
  assertEquals(de.name, "bar");
});