Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions nodejs/docs/api/class-testconfig.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1107,6 +1107,17 @@ export default defineConfig({
- `stdout` "pipe" | "ignore" *(optional)*

If `"pipe"`, it will pipe the stdout of the command to the process stdout. If `"ignore"`, it will ignore the stdout of the command. Default to `"ignore"`.
- `wait` [Object] *(optional)*
- `stdout` [RegExp] *(optional)*


- `stderr` [RegExp] *(optional)*


- `time` [number] *(optional)*


Consider command started only when given output has been produced or a time in milliseconds has passed.
- `timeout` [number] *(optional)*

How long to wait for the process to start up and be available in milliseconds. Defaults to 60000.
Expand Down
Loading