assertArrayIncludes<T>(): void
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.
actual: ArrayLikeArg<T>
The array-like object to check for.
expected: ArrayLikeArg<T>
The array-like object to check for.
optional
msg: string
The optional message to display if the assertion fails.