@elliemae/pui-cli 9.0.0-next.30 → 9.0.0-next.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -75,7 +75,9 @@ const cmdArgs = {
|
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
77
|
const getJestFlags = (argv) => {
|
|
78
|
-
const flagsArray = [
|
|
78
|
+
const flagsArray = [
|
|
79
|
+
argv.maxWorkers ? `--maxWorkers=${argv.maxWorkers}` : ""
|
|
80
|
+
];
|
|
79
81
|
const isCi = (0, import_utils.getCIEnv)();
|
|
80
82
|
switch (`${argv.coverage}`) {
|
|
81
83
|
case "CI":
|
|
@@ -42,7 +42,9 @@ const cmdArgs = {
|
|
|
42
42
|
}
|
|
43
43
|
};
|
|
44
44
|
const getJestFlags = (argv) => {
|
|
45
|
-
const flagsArray = [
|
|
45
|
+
const flagsArray = [
|
|
46
|
+
argv.maxWorkers ? `--maxWorkers=${argv.maxWorkers}` : ""
|
|
47
|
+
];
|
|
46
48
|
const isCi = getCIEnv();
|
|
47
49
|
switch (`${argv.coverage}`) {
|
|
48
50
|
case "CI":
|