1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-15 16:43:44 -05:00
denoland-deno/cli/tests/unit/dom_exception_test.ts
Yacine Hmito 9637209765
fix(web): implement DOMException#code (#9015)
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
2021-01-09 07:27:46 +01:00

18 lines
554 B
TypeScript

// 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);
});