10 lines
304 B
TypeScript
10 lines
304 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
// Tests provision shared filesystem fixtures (tests/fixtures/) on first run,
|
|
// so serialize files to avoid copy races across workers.
|
|
fileParallelism: false,
|
|
include: ["tests/**/*.test.ts"],
|
|
},
|
|
}); |