Skip to content

Commit 68c14a0

Browse files
committed
fix: e2e test
1 parent 80b4a7e commit 68c14a0

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/e2e.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
# E2E tests for the `packages check licenses` command
5151
- test/commands/packages/check/licenses/licenses_allowed_test.dart
5252
- test/commands/packages/check/licenses/licenses_forbidden_test.dart
53+
- test/commands/packages/check/licenses/unknown_licenses_test.dart
5354

5455
steps:
5556
- name: 📚 Git Checkout

e2e/test/commands/packages/check/licenses/licenses_allowed_test.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ void main() {
5555

5656
expect(
5757
progressLogs,
58-
contains('Retrieved 1 license from 1 package of type: MIT (1).'),
58+
contains(
59+
'''Retrieved 2 licenses from 2 packages of type: MIT (1) and BSD-3-Clause (1).''',
60+
),
5961
);
6062
}),
6163
);

0 commit comments

Comments
 (0)