mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 04:09:12 +00:00
14 lines
312 B
JavaScript
14 lines
312 B
JavaScript
module.exports = {
|
|
preset: "ts-jest",
|
|
verbose: true,
|
|
bail: true,
|
|
jsx: true,
|
|
testEnvironment: 'node',
|
|
setupFilesAfterEnv: ['<rootDir>/setupTests.js'],
|
|
snapshotSerializers: [
|
|
'enzyme-to-json/serializer'
|
|
],
|
|
transform: {
|
|
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
},
|
|
}
|