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 0316ec4 commit 8b58298Copy full SHA for 8b58298
jest.config.js
@@ -1,9 +1,18 @@
1
// FIXME: should not be necessary
2
-process.env.CDS_ENV = 'better-sqlite'
+process.env.CDS_ENV = "better-sqlite";
3
4
const config = {
5
testTimeout: 42222,
6
- testMatch: ['**/*.test.js']
7
-}
+ testMatch: ["**/*.test.js"],
+ verbose: true,
8
+ coverageThreshold: {
9
+ global: {
10
+ branches: 80,
11
+ functions: 80,
12
+ lines: 80,
13
+ statements: 80,
14
+ },
15
16
+};
17
-module.exports = config
18
+module.exports = config;
package.json
@@ -48,4 +48,4 @@
48
}
49
50
51
+}
0 commit comments