function assertIsError
assertIsError<E extends Error = Error>(): asserts error is EDeprecated
(will be removed after 1.0.0) Import from https://deno.land/std/assert/assert_is_error.ts instead.
Make an assertion that error is an Error.
If not then an error will be thrown.
An error class and a string that should be included in the
error message can also be asserted.
Examples
Example 1
Example 1
import { assertIsError } from "@std/testing/asserts"; assertIsError(null); // Throws assertIsError(new RangeError("Out of range")); // Doesn't throw assertIsError(new RangeError("Out of range"), SyntaxError); // Throws assertIsError(new RangeError("Out of range"), SyntaxError, "Out of range"); // Doesn't throw assertIsError(new RangeError("Out of range"), SyntaxError, "Within range"); // Throws
Type Parameters
Parameters
Return Type
asserts error is E