0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/unit_node/testdata/binary_stdio.js
Bartek Iwańczuk 4c2380af5c
test: add unit tests from std/node (#17794)
Adds two test files: "cli/tests/unit_node/process_test.ts" and
"cli/tests/unit_node/child_process_test.ts"

---------

Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2023-02-16 14:30:14 +01:00

11 lines
266 B
JavaScript

const buffer = new Uint8Array(10);
const nread = await Deno.stdin.read(buffer);
if (nread != 10) {
throw new Error("Too little data read");
}
const nwritten = await Deno.stdout.write(buffer);
if (nwritten != 10) {
throw new Error("Too little data written");
}