You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jest-e2e.config.js
+1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ module.exports = {
9
9
collectCoverage: false,// It doesn't make sense to collect coverage for e2e tests because they target high level features and interaction with other services.
10
10
maxWorkers: 1,// We don't want to run tests in parallel because they might interfere with each other. This option is the same as --runInBand. See: https://stackoverflow.com/a/46489246.
Copy file name to clipboardExpand all lines: jest-unit.config.js
+1
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ module.exports = {
11
11
coveragePathIgnorePatterns: ['node_modules','<rootDir>/src/typechain-types'],// Coverage is collected for all files imported by the tests. We want to exclude files generated by Typechain.
0 commit comments