Skip to content
Merged
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
4 changes: 3 additions & 1 deletion lib/src/tasks/coverage/api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,9 @@ class CoverageTask extends Task {

// Run the test in content-shell.
String executable = 'content_shell';
List args = [testPath];
// The window size is specified to correspond to the size of the window in the
// dart test package, https://github.com/dart-lang/test/blob/ec1b57647df74293d7a71316020e39702735b3f7/CHANGELOG.md#012201
List args = ['--content-shell-host-window-size=1024x768', testPath];
_coverageOutput.add('');
_coverageOutput.add('Running test suite ${testPath}');
_coverageOutput.add('$executable ${args.join(' ')}\n');
Expand Down