Skip to content

Commit 55c61f4

Browse files
Add retry to eval_integration_test.dart to help with flake. (#9825)
Band aid for #9484
1 parent 24fba28 commit 55c61f4

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

packages/devtools_app/test/shared/eval_integration_test.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ void main() {
7070
expect(instance2.classRef!.name, '_Future');
7171
},
7272
timeout: const Timeout.factor(2),
73-
// TODO(https://github.com/flutter/devtools/issues/6998): if this flake
73+
// TODO(https://github.com/flutter/devtools/issues/9484): if this flake
7474
// is addressed, we can unskip this for the Flutter customer tests.
7575
tags: skipForCustomerTestsTag,
7676
);
@@ -99,7 +99,7 @@ void main() {
9999
expect(instance.valueAsString, '42');
100100
},
101101
timeout: const Timeout.factor(2),
102-
// TODO(https://github.com/flutter/devtools/issues/6998): if this flake
102+
// TODO(https://github.com/flutter/devtools/issues/9484): if this flake
103103
// is addressed, we can unskip this for the Flutter customer tests.
104104
tags: skipForCustomerTestsTag,
105105
);
@@ -151,10 +151,12 @@ void main() {
151151
expect(error.valueAsString, 'foo');
152152
},
153153
timeout: const Timeout.factor(2),
154-
// TODO(https://github.com/flutter/devtools/issues/6998): if this flake
154+
// TODO(https://github.com/flutter/devtools/issues/9484): if this flake
155155
// is addressed, we can unskip this for the Flutter customer tests.
156156
tags: skipForCustomerTestsTag,
157157
);
158-
});
158+
// TODO(https://github.com/flutter/devtools/issues/9484): if this flake
159+
// is addressed, we can remove the retry.
160+
}, retry: 3);
159161
});
160162
}

0 commit comments

Comments
 (0)