mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-19 02:51:33 +03:00
17 lines
397 B
TypeScript
17 lines
397 B
TypeScript
|
/* eslint-disable */
|
||
|
export default {
|
||
|
displayName: 'keck',
|
||
|
preset: '../../jest.preset.js',
|
||
|
globals: {
|
||
|
'ts-jest': {
|
||
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
||
|
},
|
||
|
},
|
||
|
testEnvironment: 'node',
|
||
|
transform: {
|
||
|
'^.+\\.[tj]s$': 'ts-jest',
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
||
|
coverageDirectory: '../../coverage/apps/keck',
|
||
|
};
|