mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
/** @type {import('jest').Config} */
|
|
module.exports = {
|
|
...require('../../../jest.config'),
|
|
transform: {
|
|
'^.+\\.ts$': ['ts-jest', { isolatedModules: false }],
|
|
},
|
|
coveragePathIgnorePatterns: ['index.ts'],
|
|
};
|