Skip to main content
Module

std/assert/mod.ts>fail

The Deno Standard Library
Go to Latest
function fail
import { fail } from "https://deno.land/std@0.223.0/assert/mod.ts";

Forcefully throws a failed assertion.

Examples

Example 1

import { fail } from "https://deno.land/std@0.223.0/assert/fail.ts";

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

Parameters

optional
msg: string

Returns

never