zarro 1.204.1 → 1.204.3
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.
|
@@ -183,7 +183,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
183
183
|
const project = path.basename(lowerNeedle)
|
|
184
184
|
.replace(/\.dll$/i, "")
|
|
185
185
|
.replace(/\.csproj$/i, "");
|
|
186
|
-
if (project ===
|
|
186
|
+
if (project === lowerKey) {
|
|
187
187
|
return key;
|
|
188
188
|
}
|
|
189
189
|
}
|
|
@@ -198,7 +198,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
198
198
|
slowSummary: [],
|
|
199
199
|
started: Date.now(),
|
|
200
200
|
fullLog: [],
|
|
201
|
-
}, testProcessResults = [], testProjectPaths = await gatherPaths(testProjects, true), verbosity = env.resolve("TEST_VERBOSITY");
|
|
201
|
+
}, testProcessResults = [], testProjectPaths = sortTestProjects(await gatherPaths(testProjects, true)), verbosity = env.resolve("TEST_VERBOSITY");
|
|
202
202
|
const testInParallel = await shouldTestInParallel(testProjectPaths);
|
|
203
203
|
const concurrency = testInParallel
|
|
204
204
|
? env.resolveNumber("MAX_CONCURRENCY")
|