Skip to content

Commit 5be6e30

Browse files
committed
jest: remove diagnostics: false
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.
1 parent b7dc240 commit 5be6e30

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

jest.config.base.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ module.exports = {
1515
clearMocks: true,
1616
globals: {
1717
"ts-jest": {
18-
tsconfig: "<rootDir>/tsconfig.test.json",
19-
diagnostics: false
18+
tsconfig: "<rootDir>/tsconfig.test.json"
2019
}
2120
}
2221
};

0 commit comments

Comments
 (0)