Skip to content

Commit 84c7cc1

Browse files
committed
feat: initial commit
0 parents  commit 84c7cc1

31 files changed

+6984
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
build

jest.config.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = {
2+
"clearMocks": true,
3+
"coverageDirectory": "../coverage",
4+
"resetMocks": true,
5+
"restoreMocks": true,
6+
"rootDir": "./src",
7+
"testEnvironment": "jsdom",
8+
"testPathIgnorePatterns": ["./build"],
9+
"preset": "ts-jest",
10+
"files": ["src/**/*.tsx"]
11+
}

0 commit comments

Comments
 (0)