diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-02-25 16:11:54 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-25 19:11:54 -0500 |
commit | c66d043ac6318da99c2aa6f4a6a11db3a33f1c99 (patch) | |
tree | 868f0e173a9bd0420d8033f4567c177be60fc041 /tests/console_table.ts | |
parent | ce5d5c51331b49f2dd381737a8340433746276af (diff) |
Fix console.table display of Map and move tests to unit test (#1839)
Diffstat (limited to 'tests/console_table.ts')
-rw-r--r-- | tests/console_table.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/console_table.ts b/tests/console_table.ts deleted file mode 100644 index 6ff391d99..000000000 --- a/tests/console_table.ts +++ /dev/null @@ -1,18 +0,0 @@ -console.table({ a: "test", b: 1 }); -console.table({ a: { b: 10 }, b: { b: 20, c: 30 } }, ["c"]); -console.table([1, 2, [3, [4]], [5, 6], [[7], [8]]]); -console.table(new Set([1, 2, 3, "test"])); -console.table(new Map([[1, "one"], [2, "two"]])); -console.table({ - a: true, - b: { c: { d: 10 }, e: [1, 2, [5, 6]] }, - f: "test", - g: new Set([1, 2, 3, "test"]), - h: new Map([[1, "one"]]) -}); -console.table([1, "test", false, { a: 10 }, ["test", { b: 20, c: "test" }]]); -console.table([]); -console.table({}); -console.table(new Set()); -console.table(new Map()); -console.table("test"); |