diff --git a/cdp-agentkit-core/jest.config.js b/cdp-agentkit-core/jest.config.js index fbd1c2c..9e39676 100644 --- a/cdp-agentkit-core/jest.config.js +++ b/cdp-agentkit-core/jest.config.js @@ -1,20 +1,5 @@ -const baseConfig = require("../jest.config.base.js"); +import baseConfig from "../jest.config.base.js"; -exports.default = { +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, - }, - }, };