mirror of https://github.com/openclaw/openclaw.git
13 lines
349 B
TypeScript
13 lines
349 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,
|
|
name: "process",
|
|
passWithNoTests: true,
|
|
});
|
|
}
|
|
|
|
export default createProcessVitestConfig();
|