mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
12 lines
340 B
TypeScript
12 lines
340 B
TypeScript
|
/* eslint-disable */
|
||
|
export default {
|
||
|
displayName: 'console-pro',
|
||
|
preset: '../../jest.preset.js',
|
||
|
transform: {
|
||
|
'^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nrwl/react/plugins/jest',
|
||
|
'^.+\\.[tj]sx?$': 'babel-jest',
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
||
|
coverageDirectory: '../../coverage/apps/console-pro',
|
||
|
};
|