Skip to content

Commit

Permalink
Report per project failing tests (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalkun authored Aug 26, 2024
1 parent 5c39548 commit d26c9ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResultsParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export default class ResultsParser {
if (resIndex > -1) {
for (const test of data.testSuite.tests) {
const testIndex = this.result[resIndex].testSuite.tests.findIndex(
(tes) => tes.name === test.name,
(tes) => `${tes.projectName}${tes.name}` === `${test.projectName}${test.name}`,
);
if (testIndex > -1) {
this.result[resIndex].testSuite.tests[testIndex] = test;
Expand Down

0 comments on commit d26c9ea

Please sign in to comment.