Skip to content

Commit

Permalink
Fix jest config
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Jun 18, 2024
1 parent 55c5ce9 commit ad6e459
Show file tree
Hide file tree
Showing 3 changed files with 560 additions and 12 deletions.
11 changes: 11 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
collectCoverageFrom: ['src/**/*.js'],
testPathIgnorePatterns: [
'<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]',
],
testEnvironment: 'node',
moduleDirectories: ['node_modules'],
moduleNameMapper: {
'^uuid$': require.resolve('uuid'),
},
};
Loading

0 comments on commit ad6e459

Please sign in to comment.