n8n/packages/@n8n/agents/jest.config.js
2026-03-26 11:32:46 +00:00

8 lines
200 B
JavaScript

/** @type {import('jest').Config} */
const base = require('../../../jest.config');
module.exports = {
...base,
testPathIgnorePatterns: [...(base.testPathIgnorePatterns || []), '/integration/'],
};