mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
18 lines
416 B
JavaScript
18 lines
416 B
JavaScript
module.exports = {
|
|||
verbose: true,
|
|||
transform: {
|
|||
'^.+\\.ts?$': 'ts-jest',
|
|||
},
|
|||
testURL: 'http://localhost/',
|
|||
testRegex: '(/__tests__/.*|(\\.|/)(test))\\.ts$',
|
|||
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
|
|||
moduleFileExtensions: ['ts', 'js', 'json'],
|
|||
globals: {
|
|||
'ts-jest': {
|
|||
isolatedModules: true,
|
|||
},
|
|||
},
|
|||
globalTeardown: '<rootDir>/test/teardown.ts',
|
|||
setupFiles: ['<rootDir>/test/setup.ts'],
|
|||
};
|