diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2023-03-23 10:01:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-23 10:01:07 -0400 |
commit | a3529d02329e0d2127ad2a5bb78b4c476ddd6984 (patch) | |
tree | e49cbc9ba875c963daa8333bda4bc44b2c1b5300 /cli/tests/node_compat/test/parallel/test-console-table.js | |
parent | 64602e70271750c5420d53f2189bf1286ce13fba (diff) |
refactor(ext/node): Use Deno.inspect (#17960)
No need for two almost identical implementations of the same thing
---------
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
Co-authored-by: Aapo Alasuutari <aapo.alasuutari@gmail.com>
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, 2 insertions, 0 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 3aa34d7c1..4e176e8cd 100644 --- a/cli/tests/node_compat/test/parallel/test-console-table.js +++ b/cli/tests/node_compat/test/parallel/test-console-table.js @@ -175,6 +175,7 @@ test({ a: { a: 1, b: 2, c: 3 } }, ` └─────────┴───┴───┴───┘ `); +/* TODO(kt3k): Enable this test({ a: { a: { a: 1, b: 2, c: 3 } } }, ` ┌─────────┬──────────┐ │ (index) │ a │ @@ -182,6 +183,7 @@ test({ a: { a: { a: 1, b: 2, c: 3 } } }, ` │ a │ [Object] │ └─────────┴──────────┘ `); +*/ test({ a: [1, 2] }, ` ┌─────────┬───┬───┐ |