Skip to content

Commit

Permalink
jest: remove diagnostics: false
Browse files Browse the repository at this point in the history
In #453 @martijnwalraven noted that `diagnostics` was still set to false (which
allows `jest` to run tests even if typechecking fails) with errors logged. It
seems like perhaps the errors in question have been fixed since then, as
tests pass with `diagnostics: false` removed.
  • Loading branch information
glasser committed Apr 16, 2021
1 parent b7dc240 commit 5be6e30
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jest.config.base.js
Expand Up @@ -15,8 +15,7 @@ module.exports = {
clearMocks: true,
globals: {
"ts-jest": {
tsconfig: "<rootDir>/tsconfig.test.json",
diagnostics: false
tsconfig: "<rootDir>/tsconfig.test.json"
}
}
};

0 comments on commit 5be6e30

Please sign in to comment.