mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-09 22:31:10 +00:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
import { defineConfig } from "vitest/config"
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["e2e/**/*.test.ts", "src/**/*.test.ts"],
|
|
testTimeout: 90_000,
|
|
hookTimeout: 30_000,
|
|
},
|
|
})
|