Skip to content

Commit

Permalink
feat: ✨ add unit tests + code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDutchCoder committed May 8, 2021
1 parent 2e1078b commit eece720
Show file tree
Hide file tree
Showing 7 changed files with 11,546 additions and 1,440 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ explorations
.idea
*.local
.vscode/
coverage
10 changes: 10 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
roots: ['./src'],
transform: {
'^.+\\.ts?$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'js'],
collectCoverage: true,
coverageReporters: ['lcov', 'text'],
coverageDirectory: '../coverage',
}
Loading

0 comments on commit eece720

Please sign in to comment.