Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/testing/asserts.ts>fail

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function fail
Deprecated
Deprecated

(will be removed after 1.0.0) Import from https://deno.land/std/assert/fail.ts instead.

import { fail } from "https://deno.land/std@0.217.0/testing/asserts.ts";

Forcefully throws a failed assertion.

Examples

Example 1

import { fail } from "https://deno.land/std@0.217.0/testing/asserts.ts";

fail("Deliberately failed!"); // Throws

Parameters

optional
msg: string

Returns

never