Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/test/commands/create/flutter_app/core_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void main() {
['coverage/lcov.info', '-o', 'coverage'],
workingDirectory: workingDirectory,
);
expect(testCoverageResult.stdout, contains('lines......: 100.0%'));
expect(testCoverageResult.stdout, matches(RegExp('lines(.+) 100.0%')));
}),
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import '../../../../../helpers/helpers.dart';
/// * Run `very_good packages check licenses --allowed="MIT"` and expect success
void main() {
test(
'packages check licenses --allowed="MIT"',
'packages check licenses --allowed="MIT,BSD-3-Clause"',
timeout: const Timeout(Duration(minutes: 2)),
withRunner((commandRunner, logger, updater, logs) async {
final tempDirectory = Directory.systemTemp.createTempSync();
Expand Down Expand Up @@ -44,7 +44,7 @@ void main() {
'packages',
'check',
'licenses',
'--allowed=MIT',
'--allowed=MIT,BSD-3-Clause',
relativeProjectPath,
]);
expect(
Expand Down
Loading