Skip to content

Commit

Permalink
fix: restore suite in classname for old XML (#184)
Browse files Browse the repository at this point in the history
Fix #179
  • Loading branch information
jason-ha authored Oct 7, 2020
1 parent 2f43e50 commit afa7ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ var JUnitReporter = function (baseReporterDecorator, config, logger, helper, for
.replace(/\./g, '_') + '.'
}
if (pkgName) {
name += '.'
name += pkgName + '.'
}
if (result.suite && result.suite.length > 0) {
name += result.suite.join(' ')
Expand Down

0 comments on commit afa7ca1

Please sign in to comment.