diff --git a/jest.config.js b/jest.config.js index 4dc020afb..13de995be 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,6 +1,14 @@ module.exports = { restoreMocks: true, coverageDirectory: 'jest-coverage/', + coverageThreshold: { + global: { + branches: 6.3, + functions: 9.43, + lines: 8.66, + statements: 8.88, + }, + }, setupFiles: ['./test/setup.js', './test/env.js'], testMatch: ['**/ui/app/pages/swaps/**/?(*.)+(test).js'], };