Slide 4
Slide 4 text
Vitest runs tests in pools. By default, there are several poolsÇ
0 `threads` to run tests using `node:worker_threads`
(isolation is provided with a new worker context
0 `forks` to run tests using `node:child_process` (isolation is
provided with a new `child_process.fork` process)
https://github.com/vitest-dev/vitest/blob/471cf97b0c00621d74bf9b880d02e293146b2290/docs/advanced/pool.md?plain=1#L9
Q: なぜWorker threads?