mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b6de910cbe
This change ensures that things like `encryptionKey` and `instanceId` are always available directly where they are needed, instead of passing them around throughout the code.
17 lines
463 B
JavaScript
17 lines
463 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-test-folder.ts',
|
|
'<rootDir>/test/setup-mocks.ts',
|
|
'<rootDir>/test/extend-expect.ts',
|
|
],
|
|
coveragePathIgnorePatterns: ['/src/databases/migrations/'],
|
|
testTimeout: 10_000,
|
|
};
|