aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/spawn-streaming-stdout-repro.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/spawn-streaming-stdout-repro.js')
-rw-r--r--test/bun.js/spawn-streaming-stdout-repro.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/bun.js/spawn-streaming-stdout-repro.js b/test/bun.js/spawn-streaming-stdout-repro.js
deleted file mode 100644
index 3976ff095..000000000
--- a/test/bun.js/spawn-streaming-stdout-repro.js
+++ /dev/null
@@ -1,5 +0,0 @@
-var writer = Bun.stdout.writer();
-setInterval(() => {
- writer.write("Wrote to stdout\n");
- writer.flush();
-}, 20);