function assertNotMatch
assertNotMatch(): voidDeprecated
(will be removed after 1.0.0) Import from https://deno.land/std/assert/assert_not_match.ts instead.
Make an assertion that actual not match RegExp expected. If match
then throw.
Examples
Example 1
Example 1
import { assertNotMatch } from "@std/testing/asserts"; assertNotMatch("Denosaurus", RegExp(/Raptor/)); // Doesn't throw assertNotMatch("Raptor", RegExp(/Raptor/)); // Throws
Parameters
Return Type
void