deepStrictEqual<T>(actual: unknown, expected: T, message?: string | Error): 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.
Tests for deep equality between the
actual
andexpected
parameters. "Deep" equality means that the enumerable "own" properties of child objects are recursively evaluated also by the following rules.