Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use jest instead of mocha #9

Merged
merged 11 commits into from
Jan 8, 2019
Merged
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
}
},
"jest": {
"verbose": true,
"roots": [
"test"
],
Expand All @@ -77,7 +76,9 @@
],
"moduleFileExtensions": [
"ts",
"tsx"
"tsx",
"js",
whatwewant marked this conversation as resolved.
Show resolved Hide resolved
"jsx"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
Expand All @@ -89,7 +90,7 @@
],
"coverageThreshold": {
"global": {
"branches": 90,
"branches": 80,
"functions": 90,
"lines": 90,
"statements": -10
Expand Down