Skip to content

Commit

Permalink
feat: add basic jest setup
Browse files Browse the repository at this point in the history
  • Loading branch information
usefulthink committed Feb 9, 2023
1 parent 9029ed0 commit 167b6f2
Show file tree
Hide file tree
Showing 5 changed files with 2,060 additions and 52 deletions.
10 changes: 10 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
roots: ['<rootDir>/src'],
testMatch: [
'**/__tests__/**/*.+(ts|tsx|js)',
'**/?(*.)+(spec|test).+(ts|tsx|js)'
],
transform: {
'^.+\\.(ts|tsx)$': 'ts-jest'
}
};
Loading

0 comments on commit 167b6f2

Please sign in to comment.