Skip flaky date picker tests on Windows (#32817)

Date picker tests have been flaky on Windows for a long time, and repeatedly require restarting of bots. In the interest of productivity, disabling them on Windows.

Related to #19696
This commit is contained in:
Greg Spencer 2019-05-16 09:31:05 -07:00 committed by GitHub
parent f8b07e230a
commit c8dbd00199
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:io';
import 'dart:ui';
import 'package:flutter/rendering.dart';
@ -16,7 +17,11 @@ import 'feedback_tester.dart';
void main() {
group('showDatePicker', () {
_tests();
});
},
// Skip on Windows because this test is quite flaky when run on Windows,
// until https://github.com/flutter/flutter/issues/19696 is fixed.
skip: Platform.isWindows,
);
}
void _tests() {