export type RstestPoolOptions = { /** Pool used to run tests in. */ type: 'fork'; /** Maximum number or percentage of workers to run tests in. */ maxWorkers?: number | string; /** Minimum number or percentage of workers to run tests in. */ minWorkers?: number | string; /** Pass additional arguments to node process in the child processes. */ execArgv?: string[];};
Default:
const defaultPool = { type: 'fork' maxWorkers: available CPUs minWorkers: available CPUs}