zarro 1.149.0 → 1.149.2
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.
|
@@ -386,7 +386,6 @@
|
|
|
386
386
|
const positiveFlags = ["yes", "true", "1"];
|
|
387
387
|
const negativeFlags = ["no", "false", "0"];
|
|
388
388
|
function resolveFlag(name, fallback) {
|
|
389
|
-
debugger;
|
|
390
389
|
const resolved = resolveInternal(name), value = resolved === undefined || resolved === ""
|
|
391
390
|
? undefined
|
|
392
391
|
: resolved.toLowerCase();
|
|
@@ -172,8 +172,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
172
172
|
const tasks = testProjectPaths.map((path, idx) => {
|
|
173
173
|
return async () => {
|
|
174
174
|
debug(`${idx} start test run ${path}`);
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
try {
|
|
176
|
+
const result = await testOneDotNetCoreProject(path, configuration, verbosity, testResults, true);
|
|
177
|
+
testProcessResults.push(result);
|
|
178
|
+
}
|
|
179
|
+
catch (e) {
|
|
180
|
+
console.error(`unable to test dotnet core project '${path}':\n${e}`);
|
|
181
|
+
process.exit(1);
|
|
182
|
+
}
|
|
177
183
|
};
|
|
178
184
|
});
|
|
179
185
|
await runInParallel(concurrency, ...tasks);
|
|
@@ -236,13 +242,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
236
242
|
: ansiColors.yellowBright.bind(ansiColors);
|
|
237
243
|
logFailures(testResults, red);
|
|
238
244
|
logSlow(testResults, cyan);
|
|
239
|
-
console.log(yellow(`
|
|
240
|
-
Test Run Summary
|
|
241
|
-
Overall result: ${overallResultFor(testResults)}
|
|
242
|
-
Test Count: ${total}, Passed: ${testResults.passed}, Failed: ${testResults.failed}, Skipped: ${testResults.skipped}, Slow: ${testResults.slowSummary.length}
|
|
243
|
-
Start time: ${dateString(testResults.started)}
|
|
244
|
-
End time: ${dateString(now)}
|
|
245
|
-
Duration: ${runTime}
|
|
245
|
+
console.log(yellow(`
|
|
246
|
+
Test Run Summary
|
|
247
|
+
Overall result: ${overallResultFor(testResults)}
|
|
248
|
+
Test Count: ${total}, Passed: ${testResults.passed}, Failed: ${testResults.failed}, Skipped: ${testResults.skipped}, Slow: ${testResults.slowSummary.length}
|
|
249
|
+
Start time: ${dateString(testResults.started)}
|
|
250
|
+
End time: ${dateString(now)}
|
|
251
|
+
Duration: ${runTime}
|
|
246
252
|
`));
|
|
247
253
|
console.log("\n");
|
|
248
254
|
}
|