diff options
author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2023-03-30 17:33:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 15:33:28 +0000 |
commit | 381f5801f924f204e9b7a693d8f6e78e63a654b8 (patch) | |
tree | f96f7900da77636c6ae79dc60aedd53b0d18ed5e /cli/tests/node_compat/test/parallel/test-console-table.js | |
parent | e0429e2ad641e9207e00838de209ce33b3562f70 (diff) |
Revert "refactor(ext/node): Use Deno.inspect (#17960)" (#18491)
This reverts commit a3529d02329e0d2127ad2a5bb78b4c476ddd6984.
This change made debugging Node tests very hard - `AssertionError` is
now printed as `[Circular *1]` giving no visibility what failed.
We need to align two implementations together and remove this one then.
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-console-table.js')
-rw-r--r-- | cli/tests/node_compat/test/parallel/test-console-table.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-console-table.js b/cli/tests/node_compat/test/parallel/test-console-table.js index 4e176e8cd..3aa34d7c1 100644 --- a/cli/tests/node_compat/test/parallel/test-console-table.js +++ b/cli/tests/node_compat/test/parallel/test-console-table.js @@ -175,7 +175,6 @@ test({ a: { a: 1, b: 2, c: 3 } }, ` └─────────┴───┴───┴───┘ `); -/* TODO(kt3k): Enable this test({ a: { a: { a: 1, b: 2, c: 3 } } }, ` ┌─────────┬──────────┐ │ (index) │ a │ @@ -183,7 +182,6 @@ test({ a: { a: { a: 1, b: 2, c: 3 } } }, ` │ a │ [Object] │ └─────────┴──────────┘ `); -*/ test({ a: [1, 2] }, ` ┌─────────┬───┬───┐ |