Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
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
7 changes: 1 addition & 6 deletions lib/web_ui/dev/test_runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ import 'utils.dart';
class TestCommand extends Command<bool> {
TestCommand() {
argParser
..addMultiOption(
'target',
abbr: 't',
help: 'The path to the target to run. When omitted, runs all targets.',
)
..addFlag(
'debug',
help: 'Pauses the browser before running a test, giving you an '
Expand Down Expand Up @@ -75,7 +70,7 @@ class TestCommand extends Command<bool> {
bool get isDebug => argResults['debug'];

/// Paths to targets to run, e.g. a single test.
List<String> get targets => argResults['target'];
List<String> get targets => argResults.rest;

/// See [ChromeInstallerCommand.chromeVersion].
String get chromeVersion => argResults['chrome-version'];
Expand Down