Refactor prettyPrinter to work with immutable objects

[#50766813][#266]
This commit is contained in:
Greg Cobb and Luan Santos
2014-03-12 11:41:18 -07:00
parent 9e927af56e
commit c9e37a2a1c
4 changed files with 57 additions and 4 deletions

View File

@@ -0,0 +1,36 @@
describe('Printing a big object', function(){
var bigObject;
function rand(upper) {
return Math.round(upper * Math.random());
}
function generateObject(level) {
var object = {};
for (var i = 0; i < 50; i++) {
var decide = rand(2);
switch (decide) {
case 0:
object["cycle" + i] = object;
break;
case 1:
object["number" + i] = rand(100);
break;
case 2:
if (level < 3) {
object["nesting" + i] = generateObject(level + 1);
}
break;
}
}
return object;
}
it('takes a resonable amount of time', function(){
bigObject = generateObject(0);
expect(j$.pp(bigObject)).toMatch(/cycle/);
});
});