diff --git a/cdp-agentkit-core/jest.config.js b/cdp-agentkit-core/jest.config.js index 9e39676..97002eb 100644 --- a/cdp-agentkit-core/jest.config.js +++ b/cdp-agentkit-core/jest.config.js @@ -2,4 +2,19 @@ import baseConfig from "../jest.config.base.js"; export default { ...baseConfig, + coveragePathIgnorePatterns: ["node_modules", "dist", "docs", "index.ts"], + coverageThreshold: { + "./src/actions/cdp/*": { + branches: 50, + functions: 50, + statements: 50, + lines: 50, + }, + "./src/actions/cdp/defi/wow/actions/*": { + branches: 50, + functions: 50, + statements: 50, + lines: 50, + }, + }, };