mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
import { defineConfig } from "vitest/config"
|
|
|
|
// to see the difference better, increase sleep time and iterations e.g. by
|
|
// SLEEP_BENCH_MS=100 pnpm -C test/benchmark test bench -- --root fixtures/sequential --fileParallelism
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globalSetup: ["./setup.ts"]
|
|
}
|
|
});
|