mirror of
https://github.com/denoland/deno.git
synced 2025-01-08 23:28:18 -05:00
18 lines
342 B
TypeScript
18 lines
342 B
TypeScript
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
import * as assert from "node:assert";
|
|
|
|
Deno.test("[node/assert] .throws() compares Error instance", () => {
|
|
assert.throws(
|
|
() => {
|
|
throw new Error("FAIL");
|
|
},
|
|
Error,
|
|
);
|
|
|
|
assert.throws(
|
|
() => {
|
|
throw new TypeError("FAIL");
|
|
},
|
|
TypeError,
|
|
);
|
|
});
|