mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* fix large stdout output * remove skip from #2674 for testing * add big stdout test using spawnSync * add bunEnv on big stdout test
3 lines
66 B
JavaScript
3 lines
66 B
JavaScript
const str = "a".repeat(300000);
|
|
await Bun.write(Bun.stdout, str);
|