Files
openclaw/vitest.contracts.config.ts
2026-03-27 16:33:53 +00:00

14 lines
392 B
TypeScript

import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
export function createContractsVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(
["src/channels/plugins/contracts/**/*.test.ts", "src/plugins/contracts/**/*.test.ts"],
{
env,
passWithNoTests: true,
},
);
}
export default createContractsVitestConfig();