We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 256d8e4 commit 2051403Copy full SHA for 2051403
src/parsers/junit.js
@@ -133,6 +133,7 @@ function setAttachments(rawCase, test_element) {
133
// junit attachments plug syntax is [[ATTACHMENT|/absolute/path/to/file.png]]
134
const regex = new RegExp('\\[\\[ATTACHMENT\\|([^\\]]+)\\]\\]', 'g');
135
136
+ let m;
137
while ((m = regex.exec(systemOut)) !== null) {
138
// avoid infinite loops with zero-width matches
139
if (m.index === regex.lastIndex) {
0 commit comments