Prettier
This commit is contained in:
@@ -768,10 +768,18 @@ describe('matchersUtil', function() {
|
|||||||
a2[0] = 1;
|
a2[0] = 1;
|
||||||
const diffBuilder = new jasmineUnderTest.DiffBuilder();
|
const diffBuilder = new jasmineUnderTest.DiffBuilder();
|
||||||
expect(matchersUtil.equals(a1, a2, diffBuilder)).toBe(false);
|
expect(matchersUtil.equals(a1, a2, diffBuilder)).toBe(false);
|
||||||
jasmine.debugLog('a1 keys: ' + jasmine.basicPrettyPrinter_(
|
jasmine.debugLog(
|
||||||
jasmineUnderTest.MatchersUtil.keys(a1)));
|
'a1 keys: ' +
|
||||||
jasmine.debugLog('a2 keys: ' + jasmine.basicPrettyPrinter_(
|
jasmine.basicPrettyPrinter_(
|
||||||
jasmineUnderTest.MatchersUtil.keys(a2)));
|
jasmineUnderTest.MatchersUtil.keys(a1)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
jasmine.debugLog(
|
||||||
|
'a2 keys: ' +
|
||||||
|
jasmine.basicPrettyPrinter_(
|
||||||
|
jasmineUnderTest.MatchersUtil.keys(a2)
|
||||||
|
)
|
||||||
|
);
|
||||||
jasmine.debugLog('a1 length:' + a1.length);
|
jasmine.debugLog('a1 length:' + a1.length);
|
||||||
jasmine.debugLog('a2 length:' + a2.length);
|
jasmine.debugLog('a2 length:' + a2.length);
|
||||||
jasmine.debugLog('a1[0]: ' + a1[0]);
|
jasmine.debugLog('a1[0]: ' + a1[0]);
|
||||||
|
|||||||
Reference in New Issue
Block a user