function assert.deepStrictEqual
Jump to headingdeepStrictEqual<T>(actual: unknown,expected: T,message?: string | Error,): asserts actual is TTests 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.
Type Parameters Jump to heading
Parameters Jump to heading
Jump to headingactual: unknownJump to headingexpected: Toptional
Jump to headingmessage: string | ErrorReturn Type Jump to heading
asserts actual is T