mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
34df8b6238
Co-authored-by: Csaba Tuncsik <[email protected]>
13 lines
414 B
JavaScript
13 lines
414 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-mocks.ts', '<rootDir>/test/extend-expect.ts'],
|
|
coveragePathIgnorePatterns: ['/src/databases/migrations/'],
|
|
testTimeout: 10_000,
|
|
};
|