mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-21 16:18:28 +01:00
Improve jest performance (#9496)
Utilizing resources based on thread availability improves performance vs fixed threading. The linked issue for CI crashes has not been closed. Once this is solves, `runInBand` may improves performance in CI.
This commit is contained in:
parent
1bf3a4b6eb
commit
490e6c322d
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@ -48,10 +48,12 @@ jobs:
|
||||
# Tests in apps/ are typechecked when their app is built, so we just do it here for libs/
|
||||
# See https://bitwarden.atlassian.net/browse/EC-497
|
||||
- name: Run typechecking
|
||||
run: npm run test:types --coverage
|
||||
run: npm run test:types
|
||||
|
||||
- name: Run tests
|
||||
run: npm run test --coverage
|
||||
# maxWorkers is a workaround for a memory leak that crashes tests in CI:
|
||||
# https://github.com/facebook/jest/issues/9430#issuecomment-1149882002
|
||||
run: npm test -- --coverage --maxWorkers=3
|
||||
|
||||
- name: Report test results
|
||||
uses: dorny/test-reporter@eaa763f6ffc21c7a37837f56cd5f9737f27fc6c8 # v1.8.0
|
||||
|
@ -11,10 +11,8 @@ module.exports = {
|
||||
".*.type.spec.ts", // ignore type tests (which are checked at compile time and not run by jest)
|
||||
],
|
||||
|
||||
// Workaround for a memory leak that crashes tests in CI:
|
||||
// https://github.com/facebook/jest/issues/9430#issuecomment-1149882002
|
||||
// Also anecdotally improves performance when run locally
|
||||
maxWorkers: 3,
|
||||
// Improves on-demand performance, for watches prefer 25%, overridable by setting --maxWorkers
|
||||
maxWorkers: "50%",
|
||||
|
||||
transform: {
|
||||
"^.+\\.(ts|js|mjs|svg)$": [
|
||||
|
Loading…
Reference in New Issue
Block a user