Skip to content

Commit f2bf83d

Browse files
committed
test: fix duplicate setupFilesAfterEnv in jest config
- remove duplicate key causing ESLint failure - ensure single source of test setup configuration
1 parent 8c0924b commit f2bf83d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

jest.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ module.exports = {
1010

1111
collectCoverage: true,
1212
collectCoverageFrom: ["js/**/*.js", "!js/vendor/**"],
13-
coverageReporters: ["text-summary", "text", "lcov"],
14-
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
13+
coverageReporters: ["text-summary", "text", "lcov"]
1514
};

0 commit comments

Comments
 (0)