Skip to content

Commit 33838e6

Browse files
fix: add dashboard URL to test case creation response
1 parent 7fa2649 commit 33838e6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/tools/testmanagement-utils/testcase-from-file.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,18 @@ export async function createTestCasesFromFile(
8080

8181
signedUrlMap.delete(args.documentId);
8282

83+
const dashboardURL = `https://test-management.browserstack.com/projects/${args.projectReferenceId}/folders/${args.folderId}/test-cases`;
84+
8385
return {
8486
content: [
8587
{
8688
type: "text",
8789
text: resultString,
8890
},
91+
{
92+
type: "text",
93+
text: `Dashboard URL: ${dashboardURL}`,
94+
},
8995
],
9096
};
9197
}

0 commit comments

Comments
 (0)