// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`repl it allows print depth to be specified 1`] = ` " { '0': { '1': { '2': [Object] } }, whoops: [Circular *1] }" `; exports[`repl it colorizes raw values 1`] = `"{ meaning: 42 }"`; exports[`repl it handles deep and recursive objects 1`] = ` " { '0': { '1': { '2': { '3': { '4': { '5': [Object] } } } } }, whoops: [Circular *1] }" `; exports[`repl it handles undefined 1`] = `"undefined"`; exports[`repl it prints promise rejects 1`] = ` Array [ Array [ "Waiting for promise...", ], Array [ "Promise Rejected: ", "'Dang, diggity!'", ], ] `; exports[`repl it prints promise resolves 1`] = ` Array [ Array [ "Waiting for promise...", ], Array [ "Promise Resolved: ", "[ 1, 2, 3 ]", ], ] `; exports[`repl promises rejects only write to a specific depth 1`] = ` Array [ Array [ "Waiting for promise...", ], Array [ "Promise Rejected: ", " { '0': { '1': { '2': { '3': { '4': { '5': [Object] } } } } }, whoops: [Circular *1] }", ], ] `; exports[`repl promises resolves only write to a specific depth 1`] = ` Array [ Array [ "Waiting for promise...", ], Array [ "Promise Resolved: ", " { '0': { '1': { '2': { '3': { '4': { '5': [Object] } } } } }, whoops: [Circular *1] }", ], ] `; exports[`repl repl exposes a print object that lets you tailor depth 1`] = ` Array [ Array [ "{ hello: { world: [Object] } }", ], ] `; exports[`repl repl exposes a print object that prints promises 1`] = ` Array [ Array [ "", ], Array [ "Waiting for promise...", ], Array [ "Promise Resolved: ", "{ hello: { world: [Object] } }", ], ] `;