Unverified Commit 58301211 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Skip flaky flutter_immediately_exit test (#74055)

parent f6156fee
...@@ -10,6 +10,7 @@ import 'test_driver.dart'; ...@@ -10,6 +10,7 @@ import 'test_driver.dart';
import 'test_utils.dart'; import 'test_utils.dart';
void main() { void main() {
group('immediate exit', () {
Directory tempDir; Directory tempDir;
final ProjectWithImmediateExit _project = ProjectWithImmediateExit(); final ProjectWithImmediateExit _project = ProjectWithImmediateExit();
FlutterRunTestDriver _flutter; FlutterRunTestDriver _flutter;
...@@ -24,7 +25,6 @@ void main() { ...@@ -24,7 +25,6 @@ void main() {
tryToDelete(tempDir); tryToDelete(tempDir);
}); });
testWithoutContext('flutter_tools gracefully handles quick app shutdown', () async { testWithoutContext('flutter_tools gracefully handles quick app shutdown', () async {
try { try {
await _flutter.run(); await _flutter.run();
...@@ -40,4 +40,6 @@ void main() { ...@@ -40,4 +40,6 @@ void main() {
); );
} }
}); });
}, skip: platform.isWindows, // Flaky on Windows: https://github.com/flutter/flutter/issues/74052
);
} }
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