Skip to content

Commit

Permalink
feat(reporting): Add test ID to test data attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
myselfsaurabh committed Feb 12, 2025
1 parent 2b1c5c0 commit a17ddaa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/web-integration/src/playwright/reporter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ class MidsceneReporter implements Reporter {
testDataList.push({
dumpString: dumpAnnotation.description,
attributes: {
playwright_test_id: test.id,
playwright_test_title: test.title,
playwright_test_status: result.status,
playwright_test_duration: result.duration,
playwright_test_duration: result.duration,
},
});

Expand Down

0 comments on commit a17ddaa

Please sign in to comment.