function
assert.default.deepStrictEqual
actual: unknown,
expected: T,
): asserts actual is T;
Tests for deep equality between the actual and expected parameters. "Deep" equality means that the enumerable "own" properties of child objects are recursively evaluated also by the following rules.
actual: unknown,
expected: T,
message: string,
...args: unknown[]
): asserts actual is T;
Tests for deep equality between the actual and expected parameters. "Deep" equality means that the enumerable "own" properties of child objects are recursively evaluated also by the following rules.