@nsshunt/ststestrunner 1.0.60 → 1.0.61

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.
@@ -12812,9 +12812,11 @@ class TestCaseFhirBase {
12812
12812
  }
12813
12813
  console.log(`Finished load for VU: [${VU}]`);
12814
12814
  console.log(chalk$1.magenta(`StartTestDataLoad(): End`));
12815
- console.log(__privateGet(this, _randomDataRecordset));
12816
- console.log(__privateGet(this, _randomDataRecordset).length);
12817
- console.log(VU);
12815
+ console.log(`First 10 entries`);
12816
+ for (let i = 0; i < 10; i++) {
12817
+ console.log(__privateGet(this, _randomDataRecordset)[i].id);
12818
+ }
12819
+ console.log(`block num: [${blockNum}] length: [${__privateGet(this, _randomDataRecordset).length}] VU: [${VU}]`);
12818
12820
  await Sleep(1e4);
12819
12821
  });
12820
12822
  __privateAdd(this, _ForcePublishTelemetryData2, async () => {