mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
41d5bf2a19
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7612 GitOrigin-RevId: 4da8b7a642af3795ef9c31939e2d14ef7a755013
16 lines
376 B
TypeScript
16 lines
376 B
TypeScript
/* eslint-disable */
|
|
export default {
|
|
displayName: 'nx-internal-plugin-e2e',
|
|
preset: '../../../jest.preset.js',
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
},
|
|
},
|
|
transform: {
|
|
'^.+\\.[tj]s$': 'ts-jest',
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../../coverage/apps/nx/internal-plugin-e2e',
|
|
};
|