1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00

fix(jest): Update deprecated ts-jest config option.

This is consistently reproducible -- see e.g.,
[the latest Travis build](https://travis-ci.org/microsoft/TypeScript-Node-Starter/builds/533095625)
for an example of this error in CI. Simple one-line fix.
This commit is contained in:
Jesse Stuart
2019-06-13 23:51:06 -04:00
parent 044db381fd
commit c380a1dfeb

View File

@@ -1,7 +1,7 @@
module.exports = {
globals: {
'ts-jest': {
tsConfigFile: 'tsconfig.json'
tsConfig: 'tsconfig.json'
}
},
moduleFileExtensions: [
@@ -15,4 +15,4 @@ module.exports = {
'**/test/**/*.test.(ts|js)'
],
testEnvironment: 'node'
};
};