
Hide the `--web-renderer` option in the Flutter Tool. The defaults already cover all fully supported modes: - `flutter build web` provides canvaskit + dart2js - `flutter build web --wasm` provides skwasm + dart2wasm We do not want to encourage production usage of any other permutations (e.g. `auto` or `html`), in particular those that simply do not work (e.g. `skwasm` + dart2js). Fixes https://github.com/flutter/flutter/issues/140096 Fixes https://github.com/flutter/flutter/issues/151786
This directory contains tests for specific flutter
commands.
Tests that are self-contained unit tests should go in hermetic/
.
Tests that are more end-to-end, e.g. that involve actually running
subprocesses, should go in permeable/
.
The ../../tool/coverage_tool.dart
script (which is used to collect
coverage for the tool) runs only the tests in the hermetic
directory
when collecting coverage.