slnodejs 6.1.596 → 6.1.598
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.
- package/browser-agent/dist/browser-agent-all.js +4 -1
- package/browser-agent/dist/browser-agent-all.min.js +2 -2
- package/browser-agent/package.json +1 -1
- package/package.json +1 -1
- package/tsOutputs/common/footprints-process-v6/index.js +3 -0
- package/tsOutputs/common/footprints-process-v6/index.js.map +1 -1
|
@@ -29135,7 +29135,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
29135
29135
|
"use strict";
|
|
29136
29136
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29137
29137
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
29138
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
29138
|
+
exports.SL_AGENT_VERSION = '6.1.598';
|
|
29139
29139
|
exports.SL_AGENT_TYPE = 'browser';
|
|
29140
29140
|
});
|
|
29141
29141
|
|
|
@@ -35424,6 +35424,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
35424
35424
|
this.delegateEvents();
|
|
35425
35425
|
}
|
|
35426
35426
|
enqueueCurrentFootprints(execution, testName, isFinalFootprints = false) {
|
|
35427
|
+
var _a, _b;
|
|
35427
35428
|
return __awaiter(this, void 0, void 0, function* () {
|
|
35428
35429
|
this.currentExecutionBsid = execution.buildSessionId;
|
|
35429
35430
|
this.collectionInterval.next();
|
|
@@ -35431,7 +35432,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
35431
35432
|
if (hitFilesData.length) {
|
|
35432
35433
|
this.logger.info(`Collecting hits for '${hitFilesData.length}' files`);
|
|
35433
35434
|
const convertedHits = this.hitsConverter.convertHits(hitFilesData);
|
|
35435
|
+
this.logger.debug(`Converted total ${(_a = convertedHits.branches) === null || _a === void 0 ? void 0 : _a.length} branches and ${(_b = convertedHits.methods) === null || _b === void 0 ? void 0 : _b.length} methods.`);
|
|
35434
35436
|
this.footprintsBuffer.addHit(convertedHits, this.collectionInterval.toJson(), execution.executionId, testName, this.isInitFootprints(), isFinalFootprints);
|
|
35437
|
+
this.logger.debug(`Hits added successfully for execution ${execution.executionId} and test ${testName}.`);
|
|
35435
35438
|
}
|
|
35436
35439
|
else {
|
|
35437
35440
|
this.logger.info('No files were hits, not collecting footprints');
|