Work-around for channels flake (#121261)
This commit is contained in:
parent
1737233567
commit
4ef1fe4434
@ -24,7 +24,10 @@ void main() {
|
|||||||
while (getStatus(tester) == 'ok') {
|
while (getStatus(tester) == 'ok') {
|
||||||
step++;
|
step++;
|
||||||
print('>> Tapping for step $step...');
|
print('>> Tapping for step $step...');
|
||||||
await tester.tap(stepButton);
|
// TODO(goderbauer): Setting the pointer ID to something large to avoid
|
||||||
|
// that the test events clash with ghost events from the device to
|
||||||
|
// further investigate https://github.com/flutter/flutter/issues/116663.
|
||||||
|
await tester.tap(stepButton, pointer: 500 + step);
|
||||||
await tester.pump();
|
await tester.pump();
|
||||||
expect(statusField, findsNothing);
|
expect(statusField, findsNothing);
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@ abstract class BindingBase {
|
|||||||
return true;
|
return true;
|
||||||
}());
|
}());
|
||||||
|
|
||||||
assert(_debugInitializedType == null);
|
assert(_debugInitializedType == null, 'Binding is already initialized to $_debugInitializedType');
|
||||||
initInstances();
|
initInstances();
|
||||||
assert(_debugInitializedType != null);
|
assert(_debugInitializedType != null);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user