diff options
author | 2022-11-11 16:02:35 -0800 | |
---|---|---|
committer | 2022-11-11 16:02:35 -0800 | |
commit | 514f2a8eddf1a1d35a33cc096ed7403a79afe36f (patch) | |
tree | 0172fc957c2517381a591420c1467d65fc08efaa /test/bun.js/spawn-streaming-stdout-repro.js | |
parent | 5f5d74c534c6482d91c07037cd0a1ae02bd92a3f (diff) | |
download | bun-514f2a8eddf1a1d35a33cc096ed7403a79afe36f.tar.gz bun-514f2a8eddf1a1d35a33cc096ed7403a79afe36f.tar.zst bun-514f2a8eddf1a1d35a33cc096ed7403a79afe36f.zip |
Add test that fails on linux
Diffstat (limited to 'test/bun.js/spawn-streaming-stdout-repro.js')
-rw-r--r-- | test/bun.js/spawn-streaming-stdout-repro.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/bun.js/spawn-streaming-stdout-repro.js b/test/bun.js/spawn-streaming-stdout-repro.js new file mode 100644 index 000000000..7279574bf --- /dev/null +++ b/test/bun.js/spawn-streaming-stdout-repro.js @@ -0,0 +1,3 @@ +setInterval(() => { + console.log("Wrote to stdout"); +}, 20); |