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

x/sqlite3/test/deps.ts>assertArrayIncludes

The fastest and correct module for SQLite3 in Deno.
Latest
function assertArrayIncludes
import { assertArrayIncludes } from "https://deno.land/x/sqlite3@0.11.1/test/deps.ts";

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