File tree 1 file changed +5
-1
lines changed
packages/flutter_tools/lib/src/commands
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -111,10 +111,14 @@ class TestCommand extends FlutterCommand {
111
111
help: 'Whether to build the assets bundle for testing.\n '
112
112
'Consider using --no-test-assets if assets are not required.' ,
113
113
)
114
+ // --platform is not supported to be used by Flutter developers. It only
115
+ // exists to test the Flutter framework itself and may be removed entirely
116
+ // in the future. Developers should either use plain `flutter test`, or
117
+ // `package:integration_test` instead.
114
118
..addOption ('platform' ,
115
119
allowed: const < String > ['tester' , 'chrome' ],
120
+ hide: true ,
116
121
defaultsTo: 'tester' ,
117
- help: 'The platform to run the unit tests on. Defaults to "tester".' ,
118
122
)
119
123
..addOption ('test-randomize-ordering-seed' ,
120
124
help: 'The seed to randomize the execution order of test cases.\n '
You can’t perform that action at this time.
0 commit comments