Skip to content

Commit

Permalink
fix: disable ts-jest diagnostics for local tests.
Browse files Browse the repository at this point in the history
Due to: kulshekhar/ts-jest#943

It happens quite often that hinders productivity
  • Loading branch information
unional committed Jan 13, 2019
1 parent 71c1b12 commit f5ba718
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/devpkg-node/simple/config/jest.common.js
Expand Up @@ -17,6 +17,11 @@ module.exports = isCI ? {
'testMatch': ['**/?(*.)+(spec|test|integrate|accept|system|unit).ts?(x)']
} : {
'preset': 'ts-jest',
'globals': {
'ts-jest': {
'diagnoistics': false
}
},
'collectCoverageFrom': [
'<rootDir>/src/**/*.ts',
'!<rootDir>/src/bin.ts'
Expand Down

0 comments on commit f5ba718

Please sign in to comment.