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 e4f201e commit 46cf28aCopy full SHA for 46cf28a
.env.example
@@ -0,0 +1 @@
1
+HELLO=WORLD
jest.config.js
@@ -11,6 +11,14 @@ module.exports = {
11
'<rootDir>/src/**/*.{ts,js}',
12
'!<rootDir>/src/index.{ts,js}'
13
],
14
+ coverageThreshold: {
15
+ global: {
16
+ branches: 90,
17
+ functions: 90,
18
+ lines: 90,
19
+ statements: 90,
20
+ },
21
22
testRegex: '(/tests/.*|(\\.|/)(test|spec))\\.(j|t)sx?$',
23
clearMocks: true
24
};
0 commit comments