Unverified Commit 7ceb2041 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

disable hot reload web tests on CI due to flakes (#69802)

parent 36ff0b2d
...@@ -30,7 +30,7 @@ void main() { ...@@ -30,7 +30,7 @@ void main() {
testWithoutContext('hot restart works without error', () async { testWithoutContext('hot restart works without error', () async {
await flutter.run(chrome: true); await flutter.run(chrome: true);
await flutter.hotRestart(); await flutter.hotRestart();
}, skip: platform.isMacOS, retry: 1); }, skip: true); // TODO(jonahwilliams): https://github.com/flutter/flutter/issues/69804
testWithoutContext('newly added code executes during hot restart', () async { testWithoutContext('newly added code executes during hot restart', () async {
final Completer<void> completer = Completer<void>(); final Completer<void> completer = Completer<void>();
...@@ -48,7 +48,7 @@ void main() { ...@@ -48,7 +48,7 @@ void main() {
} finally { } finally {
await subscription.cancel(); await subscription.cancel();
} }
}, skip: platform.isMacOS, retry: 1); }, skip: true); // TODO(jonahwilliams): https://github.com/flutter/flutter/issues/69804
testWithoutContext('newly added code executes during hot restart - canvaskit', () async { testWithoutContext('newly added code executes during hot restart - canvaskit', () async {
final Completer<void> completer = Completer<void>(); final Completer<void> completer = Completer<void>();
...@@ -66,5 +66,5 @@ void main() { ...@@ -66,5 +66,5 @@ void main() {
} finally { } finally {
await subscription.cancel(); await subscription.cancel();
} }
}, skip: true, retry: 1); // Currently broken: Expected a value of type 'Future<_RegisteredFont>', but got one of type '_Future<_RegisteredFont?> }, skip: true); // TODO(jonahwilliams): https://github.com/flutter/flutter/issues/69804
} }
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