Skip to content

Commit c031a49

Browse files
committed
ref #235
1 parent dc5d081 commit c031a49

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

reporters/klov/src/main/java/com/aventstack/extentreports/reporter/ExtentKlovReporter.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -882,4 +882,10 @@ private void removeFromAttributes(Test t) {
882882
deviceCollection.updateOne(match, new BasicDBObject("$pull", update));
883883
}
884884
}
885+
886+
public String uri() {
887+
if (projectName == null || projectName.isEmpty() || reportId == null)
888+
return "";
889+
return "projects/" + projectName + "/launches/" + reportId.toString() + "/tests";
890+
}
885891
}

0 commit comments

Comments
 (0)