n8n/packages/@n8n/ai-workflow-builder.ee/jest.config.integration.js

9 lines
274 B
JavaScript

/** @type {import('jest').Config} */
module.exports = {
...require('./jest.config'),
// Run only integration tests
testRegex: undefined, // Override base config testRegex
testMatch: ['**/*.integration.test.ts'],
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
};