Skip to content

Commit

Permalink
chore: update the ignoringDependencyMessages matcher to ignore a ne…
Browse files Browse the repository at this point in the history
…w message about downloading packages
  • Loading branch information
jessicatarra committed Jun 25, 2024
1 parent da22520 commit f1e7d69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/melos/test/matchers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ Matcher ignoringDependencyMessages(String expected) {
.where(
(line) =>
!line.startsWith('Resolving dependencies...') &&
!line.startsWith('Got dependencies!'),
!line.startsWith('Downloading packages...') &&
!line.startsWith('Got dependencies.'),
)
.join('\n');
return ignoringAnsii(expected).matches(normalizedActual, {});
Expand Down

0 comments on commit f1e7d69

Please sign in to comment.