Skip to content

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 machine’s available parallelism.

Example

Number

js
import { defineConfig } from 'vitest/config'

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

Percent

js
import { defineConfig } from 'vitest/config'

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

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

Released under the MIT License.