diff --git a/.ci/flutter_master.version b/.ci/flutter_master.version index b1282ca8bd6..42614a2ea99 100644 --- a/.ci/flutter_master.version +++ b/.ci/flutter_master.version @@ -1 +1 @@ -8b22f67c85114def3f090286c386627efdf59614 +7e30df2225f65141e0227e424986311b79d39505 diff --git a/script/tool/lib/src/drive_examples_command.dart b/script/tool/lib/src/drive_examples_command.dart index 3033d389faf..249712db8d7 100644 --- a/script/tool/lib/src/drive_examples_command.dart +++ b/script/tool/lib/src/drive_examples_command.dart @@ -140,6 +140,10 @@ class DriveExamplesCommand extends PackageLoopingCommand { platformWeb: [ '-d', 'web-server', + // TODO(stuartmorgan): Remove once drive works without it. See + // https://github.com/dart-lang/sdk/issues/60289 and + // https://github.com/flutter/flutter/pull/169174 + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', if (useWasm) '--wasm', diff --git a/script/tool/test/drive_examples_command_test.dart b/script/tool/test/drive_examples_command_test.dart index 97c7e838d19..8320a91f745 100644 --- a/script/tool/test/drive_examples_command_test.dart +++ b/script/tool/test/drive_examples_command_test.dart @@ -840,6 +840,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--screenshot=/path/to/logs/plugin_example-drive', @@ -891,6 +892,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--wasm', @@ -941,6 +943,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--screenshot=/path/to/logs/plugin_example-drive', @@ -993,6 +996,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--chrome-binary=/path/to/chrome', @@ -1444,6 +1448,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--screenshot=/path/to/logs/plugin_example-drive', @@ -1459,6 +1464,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--screenshot=/path/to/logs/plugin_example-drive', @@ -1558,6 +1564,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--screenshot=/path/to/logs/a_package_example-drive', @@ -1603,6 +1610,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--driver', @@ -1682,6 +1690,7 @@ void main() { 'drive', '-d', 'web-server', + '--no-web-experimental-hot-reload', '--web-port=7357', '--browser-name=chrome', '--screenshot=/path/to/logs/a_package_example_with_web-drive',