diff options
author | 2023-09-20 23:42:44 -0700 | |
---|---|---|
committer | 2023-09-20 23:42:44 -0700 | |
commit | e0c5debc5749a38ed4699f8c02333df22046ee9b (patch) | |
tree | 2b13f71e7b64254af06954800b09416150072234 /test/js/web/console/console-log.expected.txt | |
parent | e16022362777dc62fd77e95c0db0807c3be4ea2c (diff) | |
download | bun-e0c5debc5749a38ed4699f8c02333df22046ee9b.tar.gz bun-e0c5debc5749a38ed4699f8c02333df22046ee9b.tar.zst bun-e0c5debc5749a38ed4699f8c02333df22046ee9b.zip |
fix(console.log): change default depth from 8 to 2 (#5839)
This make it as the same default depth in Node.
Source: https://github.com/nodejs/node/blob/480ab8c3a40451d5ea459dd35b4039679b26e195/doc/api/console.md?plain=1#L285
Diffstat (limited to 'test/js/web/console/console-log.expected.txt')
-rw-r--r-- | test/js/web/console/console-log.expected.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/js/web/console/console-log.expected.txt b/test/js/web/console/console-log.expected.txt index 31316a50f..78afa857b 100644 --- a/test/js/web/console/console-log.expected.txt +++ b/test/js/web/console/console-log.expected.txt @@ -50,3 +50,10 @@ String 123 should be 2nd word, 456 == 456 and percent s %s == What okay [ {}, {}, {}, {} ] +{ + level1: { + level2: { + level3: [Object ...] + } + } +} |