Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/deno_slack_data_mapper/dependencies/testing_asserts.ts>assertMatch

A handy way to manage data in Slack's next-generation platform datastores
Go to Latest
function assertMatch
import { assertMatch } from "https://deno.land/x/deno_slack_data_mapper@2.6.1/dependencies/testing_asserts.ts";

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

Examples

Example 1

import { assertMatch } from "https://deno.land/std@0.224.0/assert/assert_match.ts";

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

Parameters

actual: string
expected: RegExp
optional
msg: string