vega-frontend-monorepo/libs/withdraws/jest.config.js
2022-05-27 10:44:10 -07:00

12 lines
362 B
JavaScript

module.exports = {
displayName: 'withdraws',
preset: '../../jest.preset.js',
transform: {
'^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nrwl/react/plugins/jest',
'^.+\\.[tj]sx?$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/libs/withdraws',
setupFilesAfterEnv: ['./src/setup-tests.ts'],
};