Simplify / frontend /jest.config.js
Rsr2425's picture
Got basics of FE/BE running. BE passes tests
58973c7
raw
history blame contribute delete
207 Bytes
module.exports = {
preset: 'ts-jest',
testEnvironment: 'jsdom',
setupFilesAfterEnv: ['<rootDir>/src/setupTests.ts'],
moduleNameMapper: {
'\\.(css|less|scss|sass)$': 'identity-obj-proxy',
},
};