n8n/packages/cli/jest.config.integration.js
2026-02-04 13:29:54 +00:00

26 lines
831 B
JavaScript

/** @type {import('jest').Config} */
module.exports = {
...require('../../jest.config'),
testEnvironmentOptions: {
url: 'http://localhost/',
},
globalSetup: '<rootDir>/test/setup.ts',
globalTeardown: '<rootDir>/test/teardown.ts',
setupFilesAfterEnv: [
'<rootDir>/test/setup-test-folder.ts',
'<rootDir>/test/setup-mocks.ts',
'<rootDir>/test/extend-expect.ts',
],
coveragePathIgnorePatterns: ['/src/databases/migrations/'],
testTimeout: 10_000,
prettierPath: null,
// Run integration tests from test/integration, test/migration and src/ directories
testRegex: undefined, // Override base config testRegex
testMatch: [
'<rootDir>/test/integration/**/*.test.ts',
'<rootDir>/test/migration/**/*.test.ts',
'<rootDir>/src/**/*.integration.test.ts',
],
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
};