mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
8 lines
291 B
JavaScript
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,
|
|
};
|