zarro 1.106.13 → 1.106.14

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.
@@ -219,7 +219,8 @@ async function testOneProject(
219
219
  inFailureSummary: false,
220
220
  // there is some valid logging (eg build) before the first quackers log
221
221
  // - but suppress when running in parallel: can be noisy
222
- haveSeenQuackersLog: runningInParallel
222
+ haveSeenQuackersLog: runningInParallel,
223
+ testResults
223
224
  };
224
225
  const
225
226
  useQuackers = await projectReferencesQuackers(target),
@@ -283,7 +284,7 @@ function quackersStdOutHandler(state, s) {
283
284
  testResults.failureSummary.push(line);
284
285
  return;
285
286
  }
286
- incrementTestResultCount(testResults, line);
287
+ incrementTestResultCount(state.testResults, line);
287
288
  return;
288
289
  }
289
290
  if (s.startsWith(quackersFullSummaryCompleteMarker)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.106.13",
3
+ "version": "1.106.14",
4
4
  "description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
5
5
  "bin": {
6
6
  "zarro": "./index.js"