mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
ci: Improve DB integration tests (#19597)
This commit is contained in:
19
packages/cli/jest.config.integration.js
Normal file
19
packages/cli/jest.config.integration.js
Normal file
@@ -0,0 +1,19 @@
|
||||
/** @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,
|
||||
// Only run integration tests - exclude unit tests in src/
|
||||
testPathIgnorePatterns: ['/dist/', '/node_modules/', '/src/'],
|
||||
};
|
||||
Reference in New Issue
Block a user