mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-19 07:36:52 +00:00
3923f1978f
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
17 lines
548 B
JavaScript
17 lines
548 B
JavaScript
// Avoid tests failing because of difference between local and GitHub actions timezone
|
|
process.env.TZ = 'UTC';
|
|
|
|
/** @type {import('jest').Config} */
|
|
module.exports = {
|
|
...require('../../jest.config'),
|
|
testPathIgnorePatterns: ['/dist/', '/node_modules/', '\\.integration\\.test\\.ts$'],
|
|
collectCoverageFrom: [
|
|
'credentials/**/*.ts',
|
|
'nodes/**/*.ts',
|
|
'utils/**/*.ts',
|
|
...require('../../jest.coverage-excludes'),
|
|
],
|
|
globalSetup: '<rootDir>/test/globalSetup.ts',
|
|
setupFilesAfterEnv: ['jest-expect-message', '<rootDir>/test/setup.ts'],
|
|
};
|