This commit is contained in:
Steve Gravrock
2025-11-27 06:53:27 -08:00
parent c5555dd8cc
commit 1e691b2470

View File

@@ -768,10 +768,18 @@ describe('matchersUtil', function() {
a2[0] = 1;
const diffBuilder = new jasmineUnderTest.DiffBuilder();
expect(matchersUtil.equals(a1, a2, diffBuilder)).toBe(false);
jasmine.debugLog('a1 keys: ' + jasmine.basicPrettyPrinter_(
jasmineUnderTest.MatchersUtil.keys(a1)));
jasmine.debugLog('a2 keys: ' + jasmine.basicPrettyPrinter_(
jasmineUnderTest.MatchersUtil.keys(a2)));
jasmine.debugLog(
'a1 keys: ' +
jasmine.basicPrettyPrinter_(
jasmineUnderTest.MatchersUtil.keys(a1)
)
);
jasmine.debugLog(
'a2 keys: ' +
jasmine.basicPrettyPrinter_(
jasmineUnderTest.MatchersUtil.keys(a2)
)
);
jasmine.debugLog('a1 length:' + a1.length);
jasmine.debugLog('a2 length:' + a2.length);
jasmine.debugLog('a1[0]: ' + a1[0]);