-
Notifications
You must be signed in to change notification settings - Fork 615
/
jest.config.js
122 lines (102 loc) · 3.6 KB
/
jest.config.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
const fs = require("fs");
const path = require("path");
const findUp = require("find-up");
const { blueBright } = require("chalk");
function sanitizeEsIndexName(name) {
if (!name) {
return undefined;
}
if ("GITHUB_RUN_ID" in process.env) {
return `${process.env["GITHUB_RUN_ID"]}_${name}_`;
}
return name;
}
// Sanitize ElasticsearchPrefix
const esIndexPrefix = sanitizeEsIndexName(process.env.ELASTIC_SEARCH_INDEX_PREFIX);
if (esIndexPrefix) {
process.env.ELASTIC_SEARCH_INDEX_PREFIX = esIndexPrefix;
process.stdout.write(`\nES index prefix: ${blueBright(esIndexPrefix)}\n\n`);
}
// Loads environment variables defined in the project root ".env" file.
const { parsed } = require("dotenv").config({ path: path.join(__dirname, ".env") });
if (parsed) {
["WCP_PROJECT_ID", "WCP_PROJECT_ENVIRONMENT", "WCP_PROJECT_LICENSE"].forEach(key => {
delete parsed[key];
delete process.env[key];
});
console.log('The following environment variables were included from the root ".env" file:');
console.log(
Object.keys(parsed).reduce((current, item) => {
return current + `‣ ${item}\n`;
}, "")
);
}
const createPackageJestConfigPath = pkg => {
const jestConfigPath = path.join(pkg, "jest.config.js");
if (!fs.existsSync(jestConfigPath)) {
return null;
}
return jestConfigPath;
};
const createPackageJestSetupPath = pkg => {
const setupPath = path.join(pkg, "jest.setup.js");
if (!fs.existsSync(setupPath)) {
return null;
}
return setupPath;
};
const hasPackageJestConfig = pkg => {
return !!createPackageJestConfigPath(pkg);
};
const getPackageJestSetup = pkg => {
const setupPath = createPackageJestSetupPath(pkg);
if (!setupPath) {
return null;
}
return require(setupPath);
};
const getPackageNameFromPath = value => {
if (!value.includes(".") && !value.includes("/")) {
return value;
}
const packageJson = findUp.sync("package.json", {
cwd: value.includes(".") ? path.dirname(value) : value
});
return path.dirname(packageJson).split("/").pop();
};
const jestConfig = process.argv.findIndex(arg => arg.endsWith("jest.config.js"));
// This parameter is used by Webstorm, when running a particular test file.
const runByPath = process.argv.findIndex(arg => arg === "--runTestsByPath");
const isIntellij = process.argv.some(param => param.endsWith("jest-intellij-reporter.js"));
let packageName = "";
if (jestConfig > -1) {
packageName = getPackageNameFromPath(process.argv[jestConfig + 1]);
} else if (runByPath > -1) {
// Find the package this test file belongs to.
packageName = getPackageNameFromPath(process.argv[runByPath + 1]);
} else if (isIntellij) {
const target = process.argv.find(param => param.includes("/packages/"));
packageName = getPackageNameFromPath(target);
}
if (packageName.includes("packages")) {
packageName = path.resolve(packageName);
} else {
packageName = path.resolve("packages", packageName);
}
const packageRoot = packageName.replace(/\\/g, "/");
const hasConfig = hasPackageJestConfig(packageRoot);
const setup = getPackageJestSetup(packageRoot);
if (!hasConfig && !setup) {
throw new Error(`${packageName} is missing a jest.config.js or a jest.setup.js file!`);
}
const project = hasConfig ? require(createPackageJestConfigPath(packageRoot)) : setup;
if (runByPath > -1) {
project.testMatch = [process.argv[runByPath + 1]];
}
module.exports = {
projects: [project],
modulePathIgnorePatterns: ["dist"],
testTimeout: 30000,
watchman: false,
workerIdleMemoryLimit: "512MB"
};