mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 13:39:22 +01:00
13 lines
344 B
JavaScript
13 lines
344 B
JavaScript
module.exports = {
|
|
transform: {
|
|
'^.+\\.(t|j)s$': ['@swc/jest'],
|
|
},
|
|
testEnvironment: 'node',
|
|
clearMocks: true,
|
|
coverageProvider: 'v8',
|
|
setupFilesAfterEnv: ['./jest.setup.fetch-mock.js'],
|
|
testMatch: ['<rootDir>/tests/**/*.test.ts'],
|
|
testTimeout: 60000,
|
|
modulePathIgnorePatterns: ['<rootDir>/.tmp/'],
|
|
}
|