mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
13 lines
370 B
JavaScript
13 lines
370 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest/presets/js-with-ts',
|
|
testEnvironment: 'jsdom',
|
|
reporters: ['default'],
|
|
setupFilesAfterEnv: ['jest-styled-components', './hack/jestSetup.ts'],
|
|
snapshotSerializers: ['enzyme-to-json/serializer'],
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: './tsconfig.test.json',
|
|
},
|
|
},
|
|
projects: ['packages/api/jest.config.js'],
|
|
};
|