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

std/testing/asserts.ts>assertNotMatch

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

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

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

Make an assertion that actual not match RegExp expected. If match then throw.

Examples

Example 1

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

assertNotMatch("Denosaurus", RegExp(/Raptor/)); // Doesn't throw
assertNotMatch("Raptor", RegExp(/Raptor/)); // Throws

Parameters

actual: string
expected: RegExp
optional
msg: string