mirror of
https://github.com/chhoumann/PodNotes.git
synced 2026-07-22 06:40:25 +00:00
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["tests/e2e/**/*.test.ts"],
|
|
environment: "node",
|
|
testTimeout: 60_000,
|
|
hookTimeout: 30_000,
|
|
fileParallelism: false,
|
|
maxWorkers: 1,
|
|
},
|
|
});
|