aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/console-iterator-run.js
diff options
context:
space:
mode:
authorGravatar Alex Lam S.L <alexlamsl@gmail.com> 2022-12-28 11:21:21 +0200
committerGravatar GitHub <noreply@github.com> 2022-12-28 01:21:21 -0800
commit092b86321c3210b5435deef1d283648eb8ea5a90 (patch)
treeafe3e9f5642a6942ee7dd3895c22b12d246481cb /test/bun.js/console-iterator-run.js
parentda07811427cc10754414c0f1064c4158b8941fa2 (diff)
downloadbun-092b86321c3210b5435deef1d283648eb8ea5a90.tar.gz
bun-092b86321c3210b5435deef1d283648eb8ea5a90.tar.zst
bun-092b86321c3210b5435deef1d283648eb8ea5a90.zip
log object string correctly (#1674)
use `Symbol.toStringTag` of the object or that of its `.prototype` fixes #1584
Diffstat (limited to 'test/bun.js/console-iterator-run.js')
-rw-r--r--test/bun.js/console-iterator-run.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/bun.js/console-iterator-run.js b/test/bun.js/console-iterator-run.js
deleted file mode 100644
index 7664c85a1..000000000
--- a/test/bun.js/console-iterator-run.js
+++ /dev/null
@@ -1,3 +0,0 @@
-for await (const line of console) {
- console.write(line);
-}