mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 04:14:55 +02:00
14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export function createUtilsVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig(["src/utils/**/*.test.ts"], {
|
|
dir: "src",
|
|
env,
|
|
includeOpenClawRuntimeSetup: false,
|
|
name: "utils",
|
|
passWithNoTests: true,
|
|
});
|
|
}
|
|
|
|
export default createUtilsVitestConfig();
|