Skip to content

Commit

Permalink
Update lib/ci/ci_failure_parser.js
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
  • Loading branch information
F3n67u and aduh95 committed Jul 11, 2022
1 parent 75ef933 commit acaf341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ci/ci_failure_parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const FAILURE_FILTERS = [{
}, {
// TODO: match indentation to avoid skipping context with '...'
filter(ctx, text) {
const pattern = /^not ok \d+[\s\S]+? {2}\.\.\.\r?\n/mg;
const pattern = /^not ok \d+[\s\S]+? {2}\.\.\.$/mg;
const matches = text.match(pattern);
if (!matches) {
return null;
Expand Down

0 comments on commit acaf341

Please sign in to comment.