summaryrefslogtreecommitdiff
path: root/cli/tests/unit/dom_exception_test.ts
blob: 4c9e96de6e54f3aee6130da341f5beaf19a4e7b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals, unitTest } from "./test_util.ts";

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

unitTest(function testKnownDomException() {
  const de = new DOMException("foo", "SyntaxError");
  assert(de);
  assertEquals(de.message, "foo");
  assertEquals(de.name, "SyntaxError");
  assertEquals(de.code, 12);
});