Skip to content

Commit

Permalink
Yet another attempted timeout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liamappelbe committed Apr 28, 2022
1 parent 177dcd2 commit 044e7bc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bin/test_with_coverage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ Future<void> main(List<String> arguments) async {
final uri = extractVMServiceUri(line);
if (uri != null) {
serviceUriCompleter.complete(uri);
print('\n');
}
}
});
Expand All @@ -155,7 +154,7 @@ Future<void> main(List<String> arguments) async {
'--wait-paused',
'--resume-isolates',
'--uri=$serviceUri',
// '--scope-output=$packageName', // TODO(#376) Uncomment this.
'--scope-output=$packageName',
if (branchCoverage) '--branch-coverage',
if (functionCoverage) '--function-coverage',
'-o',
Expand All @@ -169,10 +168,10 @@ Future<void> main(List<String> arguments) async {
'--lcov',
'--check-ignore',
'--package=$packageDir',
'--report-on=lib',
'-i',
outJson,
'-o',
outLcov,
], workingDir: thisDir);
exit(0);
}

0 comments on commit 044e7bc

Please sign in to comment.