vitest-pool-example
v1.0.2
Published
[![Version][version-badge]][npm-url]
Readme
vitest-pool-example
Reference implementation of a custom Vitest pool worker.
Installation
npm install -D vitest-pool-exampleConfiguration
import { defineConfig } from "vitest/config";
import { customPool } from "vitest-pool-example";
export default defineConfig({
test: {
pool: customPool({ customProperty: "b" }),
},
});