Manually close the tree for issue #86754 (#86755)

This commit is contained in:
Zachary Anderson 2021-07-20 19:58:58 -07:00 committed by GitHub
parent b0e51db8d5
commit 5acf7e98f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,13 @@
// found in the LICENSE file.
import 'package:flutter_devicelab/framework/framework.dart';
import 'package:flutter_devicelab/framework/task_result.dart';
import 'package:flutter_devicelab/tasks/hot_mode_tests.dart';
Future<void> main() async {
await task(createHotModeTest(deviceIdOverride: 'macos'));
// TODO(zra): https://github.com/flutter/flutter/issues/86754
throw TaskResult.failure(
'Tree was manually closed for Android version of this test https://github.com/flutter/flutter/issues/86754');
}