File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
packages/video_player/video_player/example/integration_test Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1- 04d39343a69166c2e68fc3ea1c2c113d9e99a628
1+ 2578d97f32c8ac47f446059a0a03dc434838e83e
Original file line number Diff line number Diff line change @@ -52,8 +52,6 @@ void main() {
5252 await tester.pumpAndSettle (_playDuration);
5353 await controller.pause ();
5454
55- // Disposing controller causes the Widget to crash in the next line
56- // (Issue https://github.com/flutter/flutter/issues/90046)
5755 await controller.dispose ();
5856
5957 // Now replace it with `another` controller...
@@ -70,7 +68,18 @@ void main() {
7068 await expectLater (started.future, completes);
7169 await expectLater (ended.future, completes);
7270 },
73- skip: ! (kIsWeb || defaultTargetPlatform == TargetPlatform .android),
71+ // TODO(tarrinneal): Re-enable once out of band failure is fixed,
72+ // https://github.com/flutter/flutter/issues/164651
73+ skip: ! kIsWeb,
74+ );
75+
76+ // TODO(tarrinneal): Remove once other test is enabled,
77+ // https://github.com/flutter/flutter/issues/164651
78+ testWidgets (
79+ 'no-op' ,
80+ (WidgetTester tester) async {
81+ expect (true , true );
82+ },
7483 );
7584}
7685
You can’t perform that action at this time.
0 commit comments