forked from ONEST-Network/ref-seeker-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue ONEST-Network#12 feat: Added jest framework
- Loading branch information
1 parent
0af8884
commit ed97e72
Showing
7 changed files
with
10,510 additions
and
6,749 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export { }; | ||
module.exports = { | ||
collectCoverage: true, | ||
collectCoverageFrom: ['src/**/*.{ts,tsx}', '!src/**/*.d.ts', | ||
'!**/vendor/**'], | ||
coverageDirectory: 'coverage', | ||
testEnvironment: 'jsdom', | ||
transform: { | ||
".(ts|tsx)": "ts-jest" | ||
}, | ||
|
||
coveragePathIgnorePatterns: [ | ||
"/node_modules/", | ||
"/coverage", | ||
"package.json", | ||
"package-lock.json", | ||
"reportWebVitals.ts", | ||
"setupTests.ts", | ||
"index.tsx" | ||
], | ||
} |
Oops, something went wrong.