mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
9 lines
291 B
JavaScript
9 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,
|
|
};
|