Const
Asserts that ALL yielded values individually match with deep equality.
Uses strict equality semantics. Every item yielded must exactly match.
expect([{ a: 1 }, { a: 1 }], 'to yield items exhaustively satisfying', { a: 1,}); // passesexpect([{ a: 1, b: 2 }], 'to yield items exhaustively satisfying', { a: 1,}); // fails Copy
expect([{ a: 1 }, { a: 1 }], 'to yield items exhaustively satisfying', { a: 1,}); // passesexpect([{ a: 1, b: 2 }], 'to yield items exhaustively satisfying', { a: 1,}); // fails
iterable-to-yield-items-exhaustively-satisfying-any
iterable
Asserts that ALL yielded values individually match with deep equality.
Uses strict equality semantics. Every item yielded must exactly match.