ci: Improve DB integration tests (#19597)

This commit is contained in:
Declan Carroll
2025-09-17 07:36:12 +01:00
committed by GitHub
parent cf4a5511b6
commit b0180450bc
8 changed files with 110 additions and 47 deletions

View 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/'],
};