mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
import { assertEquals, assertStringIncludes } from "./test_util.ts";
|
|
|
|
Deno.test(function customInspectFunction() {
|
|
const blob = new DOMException("test");
|
|
assertEquals(
|
|
Deno.inspect(blob),
|
|
`DOMException: test`,
|
|
);
|
|
assertStringIncludes(Deno.inspect(DOMException.prototype), "DOMException");
|
|
});
|