Files
bun.sh/test/js/bun/io/big-stdout.js
Ciro Spaciari f8c840aec7 fix large stdout output (#2850)
* fix large stdout output

* remove skip from #2674 for testing

* add big stdout test using spawnSync

* add bunEnv on big stdout test
2023-05-12 08:05:46 -03:00

3 lines
66 B
JavaScript

const str = "a".repeat(300000);
await Bun.write(Bun.stdout, str);