Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(toDebugString): change replacement string #10103

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/stringify.js
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ function serializeObject(obj) {
val = toJsonReplacer(key, val);
if (isObject(val)) {

if (seen.indexOf(val) >= 0) return '<<already seen>>';
if (seen.indexOf(val) >= 0) return '...';

seen.push(val);
}
2 changes: 1 addition & 1 deletion test/minErrSpec.js
Original file line number Diff line number Diff line change
@@ -65,7 +65,7 @@ describe('minErr', function() {
a.b.a = a;

var myError = testError('26', 'a is {0}', a);
expect(myError.message).toMatch(/a is {"b":{"a":"<<already seen>>"}}/);
expect(myError.message).toMatch(/a is {"b":{"a":"..."}}/);
});

it('should preserve interpolation markers when fewer arguments than needed are provided', function() {
4 changes: 2 additions & 2 deletions test/stringifySpec.js
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ describe('toDebugString', function() {
expect(toDebugString()).toEqual('undefined');
var a = { };
a.a = a;
expect(toDebugString(a)).toEqual('{"a":"<<already seen>>"}');
expect(toDebugString([a,a])).toEqual('[{"a":"<<already seen>>"},"<<already seen>>"]');
expect(toDebugString(a)).toEqual('{"a":"..."}');
expect(toDebugString([a,a])).toEqual('[{"a":"..."},"..."]');
});
});