Skip to content

Commit

Permalink
fix jest config bug on example
Browse files Browse the repository at this point in the history
  • Loading branch information
vicprz committed May 31, 2024
1 parent c81dda0 commit 25eee98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/example/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const config = {
{ configFile: path.resolve(__dirname, './babel.jest.config.js') },
],
},
transformIgnorePatterns: [`node_modules/(?!(${packagesToTransform.join('|')})/)`],
transformIgnorePatterns: [`node_modules/(?!${packagesToTransform.join('|')}/)`],
cacheDirectory: '.cache/jest',
// coverage
collectCoverageFrom: ['src/**/*.{js,jsx,ts,tsx}'],
Expand Down

0 comments on commit 25eee98

Please sign in to comment.