Skip to content

Commit 7913c77

Browse files
authored
Merge pull request #12 from ngfelixl/coverage-threshold-90
refactor: increase coverage threshold to 90 percent
2 parents b772fb7 + 7a01403 commit 7913c77

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

jest.config.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"testEnvironment": "node",
88
"coverageThreshold": {
99
"global": {
10-
"branches": 75,
11-
"functions": 80,
12-
"lines": 70,
13-
"statements": 70
10+
"branches": 90,
11+
"functions": 90,
12+
"lines": 90,
13+
"statements": 90
1414
}
1515
},
1616
"globals": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodeplotlib",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "NodeJS frontend-less plotting lib using plotly.js inspired by matplotlib",
55
"main": "dist/lib/index.js",
66
"types": "dist/lib/index.d.ts",

0 commit comments

Comments
 (0)