mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
11 lines
269 B
JavaScript
11 lines
269 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'],
|
|
}
|