mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-02 17:57:06 +02:00
9 lines
274 B
JavaScript
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/'],
|
|
};
|