From cd111dc87c89dc198c7ec932336886458993ffe6 Mon Sep 17 00:00:00 2001 From: Brian Pilati Date: Fri, 22 Aug 2025 15:15:40 -0500 Subject: [PATCH] chore(test-speed): Removed the collectCoverage true in the jest.config.js file --- jest.config.js | 2 +- package.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/jest.config.js b/jest.config.js index 2697c5838..3a5036e34 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,7 +2,7 @@ module.exports = { preset: 'jest-preset-angular', setupFilesAfterEnv: ['/setup-jest.ts'], globalSetup: '/jest.global-setup.ts', - collectCoverage: true, + collectCoverage: false, coverageReporters: ['json-summary', 'lcov', 'clover'], moduleNameMapper: { '^@osf/(.*)$': '/src/app/$1', diff --git a/package.json b/package.json index 80a0413d4..49b7ae546 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,6 @@ "test:watch": "jest --watch", "test:coverage": "jest --coverage && npm run test:display", "test:check-coverage-thresholds": "node .github/scripts/check-coverage-thresholds.js", - "test:counter": "node .github/counter/counter.test.increment.js", "test:display": "node .github/counter/counter.test.display.js", "watch": "ng build --watch --configuration development" },