From 792a40ed83f585eb430d9624e2e7fdfdd77f7b79 Mon Sep 17 00:00:00 2001 From: keyonghan <54558023+keyonghan@users.noreply.github.com> Date: Fri, 14 Jan 2022 16:20:20 -0800 Subject: [PATCH] Skip flaky test: background_isolate_test.dart: Hot restart kills background isolates (#96678) --- .../test/integration.shard/background_isolate_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_tools/test/integration.shard/background_isolate_test.dart b/packages/flutter_tools/test/integration.shard/background_isolate_test.dart index 193f1bbff01..2ef29372bdc 100644 --- a/packages/flutter_tools/test/integration.shard/background_isolate_test.dart +++ b/packages/flutter_tools/test/integration.shard/background_isolate_test.dart @@ -55,7 +55,7 @@ void main() { await Future.delayed(const Duration(milliseconds: 10)); await subscription.cancel(); await flutter.stop(); - }); + }, skip: true); // Flake: https://github.com/flutter/flutter/issues/96677 testWithoutContext('Hot reload updates background isolates', () async { final RepeatingBackgroundProject project = RepeatingBackgroundProject();