We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34bb03f commit a24356fCopy full SHA for a24356f
.github/workflows/test.yml
@@ -22,3 +22,5 @@ jobs:
22
run: |
23
npm install
24
npm test
25
+ env:
26
+ CI: true
jest.config.js
@@ -5,6 +5,14 @@ const ENABLE_COVERAGE = !!process.env.CI || !!process.env.COVERAGE;
5
module.exports = {
6
collectCoverage: ENABLE_COVERAGE,
7
coverageDirectory: "coverage/",
8
+ coverageThreshold: {
9
+ global: {
10
+ statements: 95.6,
11
+ branches: 89.6,
12
+ functions: 99,
13
+ lines: 96.1,
14
+ },
15
16
projects: [
17
{
18
displayName: "test",
0 commit comments