Skip to content

Commit 9b461c3

Browse files
committed
Increase timeout for asyncEval tests on Windows CI
1 parent 20730ee commit 9b461c3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/devtools_app/test/shared/eval_integration_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void main() {
6969
))!;
7070
expect(instance2.classRef!.name, '_Future');
7171
},
72-
timeout: const Timeout.factor(2),
72+
timeout: const Timeout.factor(8),
7373
// TODO(https://github.com/flutter/devtools/issues/6998): if this flake
7474
// is addressed, we can unskip this for the Flutter customer tests.
7575
tags: skipForCustomerTestsTag,
@@ -98,7 +98,7 @@ void main() {
9898

9999
expect(instance.valueAsString, '42');
100100
},
101-
timeout: const Timeout.factor(2),
101+
timeout: const Timeout.factor(8),
102102
// TODO(https://github.com/flutter/devtools/issues/6998): if this flake
103103
// is addressed, we can unskip this for the Flutter customer tests.
104104
tags: skipForCustomerTestsTag,
@@ -150,7 +150,7 @@ void main() {
150150
);
151151
expect(error.valueAsString, 'foo');
152152
},
153-
timeout: const Timeout.factor(2),
153+
timeout: const Timeout.factor(8),
154154
// TODO(https://github.com/flutter/devtools/issues/6998): if this flake
155155
// is addressed, we can unskip this for the Flutter customer tests.
156156
tags: skipForCustomerTestsTag,

0 commit comments

Comments
 (0)