mirror of
https://github.com/denoland/deno.git
synced 2024-11-15 16:43:44 -05:00
18 lines
554 B
TypeScript
18 lines
554 B
TypeScript
// 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);
|
|
});
|