Skip to content

Commit b6c9133

Browse files
authored
Merge pull request #2 from AudienseCo/jest-as-test-runner
Add Jest as test runner
2 parents fe1f106 + 73f2929 commit b6c9133

File tree

4 files changed

+3545
-1084
lines changed

4 files changed

+3545
-1084
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
22
dist/
3+
.tmp

jest.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
preset: 'ts-jest',
3+
testEnvironment: 'node',
4+
cacheDirectory: '.tmp/jestCache'
5+
};

0 commit comments

Comments
 (0)