zarro 1.202.1 → 1.204.0
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.
|
@@ -271,7 +271,7 @@ Test Run Summary
|
|
|
271
271
|
acc.push({ project, runTimeMs: cur.runTimeMs });
|
|
272
272
|
return acc;
|
|
273
273
|
}, []);
|
|
274
|
-
console.log(yellow(
|
|
274
|
+
console.log(yellow(`\nTest suite timings:`));
|
|
275
275
|
for (const r of assembliesAndTimes) {
|
|
276
276
|
console.log(yellow(` ${r.project}: ${nunitLikeTime(r.runTimeMs)}`));
|
|
277
277
|
}
|
|
@@ -284,7 +284,9 @@ Test Run Summary
|
|
|
284
284
|
continue;
|
|
285
285
|
}
|
|
286
286
|
if (next) {
|
|
287
|
-
return path.basename(arg)
|
|
287
|
+
return path.basename(arg)
|
|
288
|
+
.replace(/\.dll$/i, "")
|
|
289
|
+
.replace(/\.csproj$/i, "");
|
|
288
290
|
}
|
|
289
291
|
}
|
|
290
292
|
return `(project name parse failed for:) ${args.join(" ")}`;
|