diff options
Diffstat (limited to 'cli/js/tests')
-rw-r--r-- | cli/js/tests/console_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/tests/console_test.ts b/cli/js/tests/console_test.ts index 34a61c25f..256c7da80 100644 --- a/cli/js/tests/console_test.ts +++ b/cli/js/tests/console_test.ts @@ -186,7 +186,7 @@ unitTest(function consoleTestStringifyWithDepth(): void { ); assertEquals(stringifyArgs([nestedObj], { depth: 0 }), "[Object]"); assertEquals( - stringifyArgs([nestedObj], { depth: null }), + stringifyArgs([nestedObj]), "{ a: { b: { c: { d: [Object] } } } }" ); // test inspect is working the same way |