Skip to content

Commit 64ed043

Browse files
committed
removed logs
1 parent b316ab8 commit 64ed043

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

bin/testObservability/reporter/index.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -558,18 +558,12 @@ class MyReporter {
558558
}
559559

560560
mapTestId = (testData, eventType) => {
561-
console.log('inside mapTestId')
562561
if (!eventType.match(/TestRun/)) {return}
563562

564563
this.testIdMap[testData.name] = testData.uuid;
565-
console.log("inside mapTestId")
566-
console.log(`printing testIdMap: ${JSON.stringify(this.testIdMap)}`);
567564
}
568565

569566
getTestId = (testIdentifier) => {
570-
console.log("inside getTestId")
571-
console.log(`printing required testIdentifier: ${testIdentifier}`);
572-
console.log(`printing uuid from testIdMap: ${this.testIdMap[testIdentifier]}`);
573567
return this.testIdMap[testIdentifier] || null;
574568
}
575569

0 commit comments

Comments
 (0)