mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
16 lines
413 B
Markdown
16 lines
413 B
Markdown
---
|
|
title: execArgv | Config
|
|
outline: deep
|
|
---
|
|
|
|
# execArgv
|
|
|
|
- **Type:** `string[]`
|
|
- **Default:** `[]`
|
|
|
|
Pass additional arguments to `node` in the runner worker. See [Command-line API | Node.js](https://nodejs.org/docs/latest/api/cli.html) for more information.
|
|
|
|
:::warning
|
|
Be careful when using, it as some options may crash worker, e.g. `--prof`, `--title`. See https://github.com/nodejs/node/issues/41103.
|
|
:::
|