lightswitch-js-sdk
Version:
light switch javascript sdk
21 lines (20 loc) • 462 B
JavaScript
export default {
preset: 'ts-jest',
testEnvironment: 'jest-environment-jsdom',
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
coverageThreshold: {
'./lib/': {
statements: 95,
branches: 100,
functions: 95,
lines: 90,
},
},
moduleNameMapper: {
'^.+\\.svg$': 'jest-svg-transformer',
'\\.(css|less|sass|scss)$': 'identity-obj-proxy',
},
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
};