Skip to content

Commit

Permalink
Merge branch 'main' into fix/propagate-exit-code
Browse files Browse the repository at this point in the history
  • Loading branch information
spydon authored Oct 7, 2024
2 parents 84d5cc0 + d9ed25a commit 2b549c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/melos/test/matchers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ Matcher ignoringDependencyMessages(String expected) {
(line) =>
!line.startsWith('Resolving dependencies...') &&
!line.startsWith('Downloading packages...') &&
!line.startsWith('Got dependencies!'),
!line.startsWith('Got dependencies!') &&
// Removes lines like " pub_updater 0.4.0 (0.5.0 available)"
!(line.startsWith(' ') && line.contains(' available)')),
)
.join('\n');
return ignoringAnsii(expected).matches(normalizedActual, {});
Expand Down

0 comments on commit 2b549c2

Please sign in to comment.