Files
openclaw/vitest.process.config.ts
2026-04-06 15:24:59 +01:00

14 lines
389 B
TypeScript

import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
export function createProcessVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(["src/process/**/*.test.ts"], {
dir: "src",
env,
includeOpenClawRuntimeSetup: false,
name: "process",
passWithNoTests: true,
});
}
export default createProcessVitestConfig();