mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 10:50:58 +00:00
14 lines
392 B
TypeScript
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();
|