We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b316ab8 commit 64ed043Copy full SHA for 64ed043
bin/testObservability/reporter/index.js
@@ -558,18 +558,12 @@ class MyReporter {
558
}
559
560
mapTestId = (testData, eventType) => {
561
- console.log('inside mapTestId')
562
if (!eventType.match(/TestRun/)) {return}
563
564
this.testIdMap[testData.name] = testData.uuid;
565
- console.log("inside mapTestId")
566
- console.log(`printing testIdMap: ${JSON.stringify(this.testIdMap)}`);
567
568
569
getTestId = (testIdentifier) => {
570
- console.log("inside getTestId")
571
- console.log(`printing required testIdentifier: ${testIdentifier}`);
572
- console.log(`printing uuid from testIdMap: ${this.testIdMap[testIdentifier]}`);
573
return this.testIdMap[testIdentifier] || null;
574
575
0 commit comments