mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
include: ["src/**/*.interactive.e2e.test.ts"],
|
|
testTimeout: 60_000,
|
|
hookTimeout: 60_000,
|
|
},
|
|
});
|