diff options
Diffstat (limited to 'test/bun.js/stdin-repro.js')
-rw-r--r-- | test/bun.js/stdin-repro.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/bun.js/stdin-repro.js b/test/bun.js/stdin-repro.js deleted file mode 100644 index 02840d00b..000000000 --- a/test/bun.js/stdin-repro.js +++ /dev/null @@ -1,10 +0,0 @@ -var stdout = Bun.stdout.writer(); -console.error("Started"); -var count = 0; -for await (let chunk of Bun.stdin.stream()) { - const str = new Buffer(chunk).toString(); - stdout.write(str); - stdout.flush(); - count++; -} -console.error("Finished with", count); |