export type RstestPoolType = 'forks';export type RstestPoolOptions = { /** Pool used to run tests in. */ type?: RstestPoolType; /** 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[];};export type RstestConfig = { /** Pool used to run tests in. */ pool?: RstestPoolType | RstestPoolOptions;};
Default:
const defaultPool = { type: 'forks', // maxWorkers/minWorkers are computed from CPU count and command mode};