mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-29 02:46:32 +01:00
9 lines
285 B
JavaScript
9 lines
285 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
clearMocks: true,
|
|
coverageProvider: 'v8',
|
|
setupFilesAfterEnv: ['./jest.setup.pg-mock.js', './jest.setup.redis-mock.js', './jest.setup.fetch-mock.js'],
|
|
testMatch: ['<rootDir>/tests/**/*.test.ts'],
|
|
}
|