You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please note that the TAP reporter is unavailable when using [watch mode](./recipes/watch-mode.md).
184
+
185
+
## Node arguments
186
+
187
+
The `--node-arguments` argument may be used to specify additional arguments for launching worker processes. These are combined with the `nodeArguments` configuration and any arguments passed to the `node` binary when starting AVA.
188
+
189
+
**Only pass trusted values.**
190
+
191
+
Specify the arguments as a single string:
192
+
193
+
```console
194
+
npx ava --node-arguments="--throw-deprecation --zero-fill-buffers"
Copy file name to clipboardexpand all lines: docs/06-configuration.md
+4
Original file line number
Diff line number
Diff line change
@@ -224,4 +224,8 @@ export default {
224
224
};
225
225
```
226
226
227
+
## Node arguments
228
+
229
+
The `nodeArguments` configuration may be used to specify additional arguments for launching worker processes. These are combined with `--node-arguments` passed on the CLI and any arguments passed to the `node` binary when starting AVA.
0 commit comments