-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallaby.js
59 lines (52 loc) · 1.63 KB
/
wallaby.js
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
module.exports = function (wallaby) {
// Babel, jest-cli and some other modules may be located under
// react-scripts/node_modules, so need to let node.js know about it
var path = require("path");
process.env.NODE_PATH +=
path.delimiter +
path.join(__dirname, "node_modules") +
path.delimiter +
path.join(__dirname, "node_modules/react-scripts/node_modules");
require("module").Module._initPaths();
return {
files: [
"src/**/*.+(js|jsx|json|snap|css|less|sass|scss|jpg|jpeg|gif|png|svg)",
"!src/**/*.test.js?(x)",
"!src/registerServiceWorker.js",
"!src/store.js",
"!src/index.js",
"!src/quokkaPlayground.js"
],
tests: ["src/**/*.test.js?(x)"],
env: {
type: "node",
runner: "node"
},
compilers: {
"**/*.js?(x)": wallaby.compilers.babel({
babel: require("babel-core"),
presets: ["react-app"]
})
},
hints: {
ignoreCoverage: "istanbul ignore"
},
setup: wallaby => {
const jestConfig = require("react-scripts/scripts/utils/createJestConfig")(
p => require.resolve("react-scripts/" + p)
);
Object.keys(jestConfig.transform || {}).forEach(
k => ~k.indexOf("^.+\\.(js|jsx") && void delete jestConfig.transform[k]
);
delete jestConfig.testEnvironment;
if (jestConfig.setupTestFrameworkScriptFile) {
jestConfig.setupTestFrameworkScriptFile = jestConfig.setupTestFrameworkScriptFile.replace(
"<rootDir>",
wallaby.projectCacheDir
);
}
wallaby.testFramework.configure(jestConfig);
},
testFramework: "jest"
};
};