Skip to content

Commit b5ec405

Browse files
authored
chore: Fix tap configuration to pass with exit code 0 (#527)
The tap configuration defaulted to 100% test coverage. This caused tap to exit with a non-zero exit code, signaling failure. This PR changes tap coverage limits to 94%, so that the tap process now succeeds.
1 parent 1d59871 commit b5ec405

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@
5454
"examples/prisma/postgresql",
5555
"test/serial"
5656
],
57-
"show-full-coverage": true
57+
"show-full-coverage": true,
58+
"branches": 94,
59+
"functions": 96,
60+
"lines": 96,
61+
"statements": 96
5862
},
5963
"devDependencies": {
6064
"@prisma/client": "^5.22.0",

0 commit comments

Comments
 (0)