Unverified Commit c263c56d authored by Andrew Kolos's avatar Andrew Kolos Committed by GitHub

give --task-args option in `test_runner` a help description (#133791)

Fixes https://github.com/flutter/flutter/issues/133790

Provides help text for the `--task-args` option of the `test_runner` devicelab command. The current help text is just copypasta from another option's help text
parent 1519553b
...@@ -13,7 +13,7 @@ class TestCommand extends Command<void> { ...@@ -13,7 +13,7 @@ class TestCommand extends Command<void> {
help: 'The name of a task listed under bin/tasks.\n' help: 'The name of a task listed under bin/tasks.\n'
' Example: complex_layout__start_up.\n'); ' Example: complex_layout__start_up.\n');
argParser.addMultiOption('task-args', argParser.addMultiOption('task-args',
help: 'The name of a task listed under bin/tasks.\n' help: 'List of arguments to pass to the task.\n'
'For example, "--task-args build" is passed as "bin/task/task.dart --build"'); 'For example, "--task-args build" is passed as "bin/task/task.dart --build"');
argParser.addOption( argParser.addOption(
'device-id', 'device-id',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment