Skip to content

Commit 2d2965c

Browse files
committed
feat(tests): add test
1 parent 3658400 commit 2d2965c

File tree

5 files changed

+4148
-213
lines changed

5 files changed

+4148
-213
lines changed

jest.config.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
globals: {
3+
"ts-jest": {
4+
tsconfig: "tsconfig.json",
5+
},
6+
},
7+
testRegex: "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
8+
moduleFileExtensions: ["ts", "tsx", "js", "json"],
9+
transform: {
10+
"^.+\\.(ts|tsx)$": "ts-jest",
11+
},
12+
};

0 commit comments

Comments
 (0)