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 135aec1 commit c7393b0Copy full SHA for c7393b0
jest.js.config.js
@@ -0,0 +1,21 @@
1
+module.exports = {
2
+ testEnvironment: "node",
3
+ testMatch: ["**/test/**/*.js"],
4
+ testPathIgnorePatterns: [
5
+ "/node_modules/",
6
+ "/test/index.js",
7
+ "/test/config.js",
8
+ "/test/sync_config.js",
9
+ "/test/.*/utils.js",
10
+ "/test/sync/",
11
+ ],
12
+ reporters: ["default", ["jest-html-reporters",
13
+ {
14
+ "filename": "tap-html.html",
15
+ "expand": true,
16
+ "inlineSource": true,
17
+ "includeFailureMsg": true, // Includes error messages in JSON
18
+ "includeConsoleLog": true
19
+ }
20
+ ]],
21
+};
0 commit comments