1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00
denoland-deno/tests
Divy Srivastava 3735a1a542
fix(ext/node): support stdin child_process IPC & fd stdout/stderr (#24106)
Add supports for "ipc" and fd options in child_process spawn API.

Internal changes: Adds a hidden rid and "ipc_for_internal_use" option to
Deno.Command. Used by `node:child_process`

Example:
```js
const out = fs.openSync("./logfile.txt", 'a')
const proc = spawn(process.execPath, ["./main.mjs", "child"], {
  stdio: ["ipc", out, "inherit"]
});
```

Ref #16753
2024-06-07 22:51:32 +05:30
..
config chore: move test_util/std to tests/util/std (#22402) 2024-02-13 09:22:49 -07:00
ffi BREAKING(ffi/unstable): use BigInt representation in turbocall (#23983) 2024-05-30 08:00:11 +05:30
integration chore: upgrade trust-dns-resolver and friends (#24108) 2024-06-05 23:39:39 +02:00
napi chore: enable clippy::print_stdout and clippy::print_stderr (#23732) 2024-05-08 22:45:06 -04:00
node_compat chore: disable part of test-fs-read-stream.js (#24085) 2024-06-02 21:12:52 -04:00
registry fix(npm): use configured auth for tarball urls instead of scope auth (#24111) 2024-06-05 21:24:52 +00:00
specs fix(ext/node): support stdin child_process IPC & fd stdout/stderr (#24106) 2024-06-07 22:51:32 +05:30
testdata fix: better handling of npm resolution occurring on workers (#24094) 2024-06-05 17:04:16 +02:00
unit chore: upgrade dlint to 0.60.0 (#24041) 2024-06-05 01:09:29 +02:00
unit_node chore: upgrade dlint to 0.60.0 (#24041) 2024-06-05 01:09:29 +02:00
util chore: support -- --nocapture in the spec tests (#24113) 2024-06-06 08:37:13 -04:00
wpt chore: update wpt suite (#24070) 2024-06-02 22:47:47 +02:00
Cargo.toml chore: upgrade trust-dns-resolver and friends (#24108) 2024-06-05 23:39:39 +02:00
lib.rs chore: move cli/tests/ -> tests/ (#22369) 2024-02-10 20:22:13 +00:00
README.md chore: continue tests/ re-org (#22396) 2024-02-12 17:13:14 -07:00

Deno Integration Tests