{"ScriptPreparationCode":"// 1 level deep\r\nwindow.foo1 = [\u0027hello world\u0027];\r\nwindow.bar1 = [\u0027hello world\u0027];\r\n\r\n// 2 levels deep\r\nwindow.foo2 = [\u0027hello world\u0027, \u0027hello planets\u0027, \u0027hello anyone there\u0027];;\r\nwindow.bar2 = [\u0027hello world\u0027, \u0027hello planets\u0027, \u0027hello anyone there\u0027];;\r\n\r\n// 3 levels deep\r\nwindow.foo3 = [\u0027hello world\u0027, \u0027hello planets\u0027, \u0027hello anyone there\u0027, \u0027something else\u0027, \u0027string string\u0027];;\r\nwindow.bar3 = [\u0027hello world\u0027, \u0027hello planets\u0027, \u0027hello anyone there\u0027, \u0027something else\u0027, \u0027string string\u0027];;","TestCases":[{"Name":"_.isEqual Level 1","Code":"_.isEqual(window.foo1, window.bar1)","IsDeferred":false},{"Name":"JSON.stringify Level 1","Code":"JSON.stringify(window.foo1) === JSON.stringify(window.bar1);","IsDeferred":false},{"Name":"_.isEqual Level 2","Code":"_.isEqual(window.foo2, window.bar2)","IsDeferred":false},{"Name":"JSON.stringify Level 2","Code":"JSON.stringify(window.foo2) === JSON.stringify(window.bar2);","IsDeferred":false},{"Name":"_.isEqual Level 3","Code":"_.isEqual(window.foo3, window.bar3)","IsDeferred":false},{"Name":"JSON.stringify Level 3","Code":"JSON.stringify(window.foo3) === JSON.stringify(window.bar3);","IsDeferred":false}]}