mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-26 22:35:18 +02:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
/** @type {import('jest').Config} */
|
|
const base = require('../../../jest.config');
|
|
|
|
module.exports = {
|
|
...base,
|
|
testPathIgnorePatterns: [...(base.testPathIgnorePatterns || []), '/integration/'],
|
|
};
|