-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Expand file tree
/
Copy pathjest.config.js
More file actions
60 lines (58 loc) · 1.57 KB
/
jest.config.js
File metadata and controls
60 lines (58 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"use strict";
/** @type {import("jest").Config} */
const config = {
testTimeout: 30000,
prettierPath: require.resolve("prettier-2"),
forceExit: true,
setupFilesAfterEnv: ["<rootDir>/test/setupTestFramework.js"],
testMatch: [
"<rootDir>/test/*.test.js",
"<rootDir>/test/*.basictest.js",
"<rootDir>/test/*.longtest.js",
"<rootDir>/test/*.unittest.js",
"<rootDir>/test/*.spectest.js"
],
watchPathIgnorePatterns: [
"<rootDir>/.git",
"<rootDir>/node_modules",
"<rootDir>/test/js",
"<rootDir>/test/browsertest/js",
"<rootDir>/test/fixtures/temp-cache-fixture",
"<rootDir>/test/fixtures/temp-",
"<rootDir>/benchmark",
"<rootDir>/assembly",
"<rootDir>/tooling",
"<rootDir>/examples/*/dist",
"<rootDir>/coverage",
"<rootDir>/.eslintcache"
],
modulePathIgnorePatterns: [
"<rootDir>/.git",
"<rootDir>/node_modules/webpack/node_modules",
"<rootDir>/test/js",
"<rootDir>/test/browsertest/js",
"<rootDir>/test/fixtures/temp-cache-fixture",
"<rootDir>/test/fixtures/temp-",
"<rootDir>/benchmark",
"<rootDir>/examples/*/dist",
"<rootDir>/coverage",
"<rootDir>/.eslintcache"
],
transformIgnorePatterns: ["<rootDir>"],
coverageDirectory: "<rootDir>/coverage",
coveragePathIgnorePatterns: [
"\\.runtime\\.js$",
"<rootDir>/test",
"<rootDir>/schemas",
"<rootDir>/examples",
"<rootDir>/node_modules"
],
testEnvironment: "./test/harness/patch-node-env.js",
snapshotResolver: "./test/harness/snapshot/resolver.js",
coverageReporters: ["json"],
snapshotFormat: {
escapeString: true,
printBasicPrototype: true
}
};
module.exports = config;