mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
11 lines
340 B
JavaScript
11 lines
340 B
JavaScript
/** @type {import('jest').Config} */
|
|
module.exports = {
|
|
...require('./jest.config'),
|
|
// Exclude integration tests - only run unit tests
|
|
testPathIgnorePatterns: [
|
|
'/dist/',
|
|
'/node_modules/',
|
|
'/test/integration/', // Exclude integration test directory
|
|
'\\.integration\\.test\\.ts$', // Exclude integration test files in src
|
|
],
|
|
};
|