18 lines
418 B
TypeScript
18 lines
418 B
TypeScript
/* eslint-disable */
|
|
export default {
|
|
displayName: 'pieces-framework',
|
|
preset: '../../../../jest.preset.js',
|
|
globals: {},
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.[tj]s$': [
|
|
'ts-jest',
|
|
{
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
},
|
|
],
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../../../coverage/packages/pieces/community/framework',
|
|
};
|