We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e242333 commit 94f405bCopy full SHA for 94f405b
jest.config.js
@@ -60,7 +60,8 @@ module.exports = {
60
// A set of global variables that need to be available in all test environments
61
globals: {
62
"ts-jest": {
63
- "tsconfig": "tsconfig.json"
+ tsconfig: "tsconfig.json",
64
+ isolatedModules: true,
65
}
66
},
67
test/jest.e2e.transformer.js
@@ -5,5 +5,5 @@ const transformer = require('@nestjs/graphql/plugin');
5
module.exports = {
6
name: 'nestjs-graphql-transformer',
7
version: 1,
8
- factory: (cs) => transformer.before({}, cs.tsCompiler.program)
+ factory: (tsCompiler) => transformer.before({}, tsCompiler.program)
9
};
0 commit comments