We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4befee9 commit c8e111bCopy full SHA for c8e111b
.jest.config.js
@@ -0,0 +1,11 @@
1
+// jest.config.js
2
+// Sync object
3
+/** @type {import('@jest/types').Config.InitialOptions} */
4
+const config = {
5
+ bail: 2,
6
+ clearMocks: true,
7
+ collectCoverage: true,
8
+ verbose: true,
9
+};
10
+
11
+module.exports = config;
0 commit comments