summaryrefslogtreecommitdiff
path: root/cli/tests/unit/dom_exception_test.ts
blob: f6c69c36d36e298aeb6ccc8cd85703884a993af3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018-2021 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);
});