Skip to content

Commit

Permalink
chore: ignore dist folder in jest
Browse files Browse the repository at this point in the history
Now we use ts-jest for testing which runs tests on TypeScript files
  • Loading branch information
trivikr committed Mar 24, 2021
1 parent 3d2847a commit fe09261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ module.exports = {
"<rootDir>/packages/*/jest.config.js",
"<rootDir>/clients/*/jest.config.js",
],
testPathIgnorePatterns: ["/node_modules/", "<rootDir>/clients/client-.*"],
testPathIgnorePatterns: ["/node_modules/", "/dist/", "<rootDir>/clients/client-.*"],
coveragePathIgnorePatterns: ["/node_modules/", "<rootDir>/clients/client-.*", "/__fixtures__/"],
};

0 comments on commit fe09261

Please sign in to comment.