Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hex/src/lib/stdx/testing.ts>asserts.assertArrayIncludes

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
function asserts.assertArrayIncludes
import { asserts } from "https://deno.land/x/hex@0.6.5/src/lib/stdx/testing.ts";
const { assertArrayIncludes } = asserts;

Make an assertion that actual includes the expected values. If not then an error will be thrown.

Type parameter can be specified to ensure values under comparison have the same type.

Examples

Example 1

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

assertArrayIncludes<number>([1, 2], [2])

Parameters

actual: ArrayLike<T>
expected: ArrayLike<T>
optional
msg: string