aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/stdio-test-instance.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/stdio-test-instance.js')
-rw-r--r--test/bun.js/stdio-test-instance.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/bun.js/stdio-test-instance.js b/test/bun.js/stdio-test-instance.js
new file mode 100644
index 000000000..36e48f472
--- /dev/null
+++ b/test/bun.js/stdio-test-instance.js
@@ -0,0 +1,9 @@
+process.stdout.write("hello");
+process.stdout.write(" ");
+process.stdout.write("world");
+process.stdout.write(new TextEncoder().encode("hello again|"));
+process.stdout.write(
+ new TextEncoder().encode(
+ "😋 Get Emoji — All Emojis to ✂️ Copy and 📋 Paste 👌",
+ ),
+);