1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[EC-497] Fix memory leaks in tests (#3421)

* Add isolatedModules:true

* Add manual typechecking in CI for libs/ tests
This commit is contained in:
Thomas Rittson
2022-09-08 08:05:30 +10:00
committed by GitHub
parent 233c85f7a3
commit 05ebca2c4c
3 changed files with 25 additions and 2 deletions

View File

@@ -26,4 +26,13 @@ module.exports = {
// https://github.com/facebook/jest/issues/9430#issuecomment-1149882002
// Also anecdotally improves performance when run locally
maxWorkers: 3,
globals: {
"ts-jest": {
// Further workaround for memory leak, recommended here:
// https://github.com/kulshekhar/ts-jest/issues/1967#issuecomment-697494014
// Makes tests run faster and reduces size/rate of leak, but loses typechecking on test code
// See https://bitwarden.atlassian.net/browse/EC-497 for more info
isolatedModules: true,
},
},
};