17 lines
418 B
TypeScript
17 lines
418 B
TypeScript
/* eslint-disable */
|
|
export default {
|
|
displayName: 'providers-go-feature-flag-web',
|
|
preset: '../../../jest.preset.js',
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
},
|
|
},
|
|
transform: {
|
|
'^.+\\.[tj]s$': 'ts-jest',
|
|
},
|
|
testEnvironment: 'jsdom',
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../../coverage/libs/providers/go-feature-flag-web',
|
|
};
|