vitest/docs/config/maxworkers.md
2025-11-06 14:59:05 +01:00

1.1 KiB
Raw Blame History

title outline
maxWorkers | Config deep

maxWorkers

  • Type: number | string
  • Default:
    • if watch is disabled, uses all available parallelism
    • if watch is enabled, uses half of all available parallelism

Defines the maximum concurrency for test workers. Accepts either a number or a percentage string.

  • Number: spawns up to the specified number of workers.
  • Percentage string (e.g., "50%"): computes the worker count as the given percentage of the machines available parallelism.

Example

Number

::: code-group

import { defineConfig } from 'vitest/config'

export default defineConfig({
  test: {
    maxWorkers: 4,
  },
})
vitest --maxWorkers=4

:::

Percent

::: code-group

import { defineConfig } from 'vitest/config'

export default defineConfig({
  test: {
    maxWorkers: '50%',
  },
})
vitest --maxWorkers=50%

:::

Vitest uses os.availableParallelism to know the maximum amount of parallelism available.