From 602f9affa6842167142b1e410a29e6a72f3b00ab Mon Sep 17 00:00:00 2001 From: Lxxyx Date: Tue, 27 Aug 2024 02:15:05 +0800 Subject: [PATCH] doc: fix typo in testing doc (#154105) *Replace this paragraph with a description of what this PR is changing or adding, and why. Consider including before/after screenshots.* *List which issues are fixed by this PR. You must list at least one issue. An issue is not required if the PR fixes something trivial like a typo.* *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].* - [] I listed at least one issue that this PR fixes in the description above. - [] I added new tests to check the change I am making, or this PR is [test-exempt]. - [] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [] All existing and new tests are passing. ## Detail The correct parameter is --web-port, not --webport --- .../testing/Running-Flutter-Driver-tests-with-Web.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/testing/Running-Flutter-Driver-tests-with-Web.md b/docs/contributing/testing/Running-Flutter-Driver-tests-with-Web.md index 07c5cf2772..1959a37725 100644 --- a/docs/contributing/testing/Running-Flutter-Driver-tests-with-Web.md +++ b/docs/contributing/testing/Running-Flutter-Driver-tests-with-Web.md @@ -63,7 +63,7 @@ Let's go over the different arguments that can be used: - Use one of the six browsers for `--browser-name` parameter: chrome, safari, ios-safari, android-chrome, firefox, edge. - Use `--local-engine=host_debug_unopt --local-engine-host=host_debug_unopt` for running tests with a local engine. - Use `--release` or `--profile` mode for running the tests. Debug mode will be supported soon. -- Change the `--webport` as needed, don't forget to change remote debugging settings for Android Chrome. +- Change the `--web-port` as needed, don't forget to change remote debugging settings for Android Chrome. - Use `--no-android-emulator` for using Android with real devices. ## Web Installers Repo