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

8 lines
291 B
JavaScript

/** @type {import('jest').Config} */
module.exports = {
...require('./jest.config.integration.js'),
// Override testMatch to only run migration tests
testMatch: ['<rootDir>/test/migration/**/*.test.ts'],
// Run migration tests sequentially to avoid database conflicts
maxWorkers: 1,
};