mirror of
https://github.com/flutter/flutter
synced 2024-11-05 18:37:51 +00:00
5e216d44ca
- fix https://github.com/flutter/flutter/issues/53707 by having the test not expect a timeout but instead actually look for the retry message - simplify the `--task` option to only accept task names rather than also accepting paths - remove some obsolete options that referred to the manifest which no longer seems to exist
14 lines
681 B
Dart
14 lines
681 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// Creates a situation when the test framework was not properly initialized.
|
|
///
|
|
/// By not calling `task()` the VM service extension is not registered and
|
|
/// therefore will not accept requests to run tasks. When the runner attempts to
|
|
/// connect and run the test it will receive a "method not found" error from the
|
|
/// VM service, will likely retry forever.
|
|
///
|
|
/// The test in ../../test/run_test.dart runs this task until it detects
|
|
/// the retry message and then aborts the task.
|
|
Future<void> main() async {}
|