File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 11import 'dart:async' ;
22import 'dart:convert' ;
3+ import 'dart:io' ;
34
45import 'package:checks/checks.dart' ;
56import 'package:file_picker/file_picker.dart' ;
@@ -581,7 +582,13 @@ void main() {
581582 });
582583
583584 // TODO test what happens when capturing/uploading fails
584- });
585+ },
586+ // This test fails on Windows because [XFile.name] splits on
587+ // [Platform.pathSeparator], corresponding to the actual host platform
588+ // the test is running on, instead of the path separator for the
589+ // target platform the test is simulating.
590+ // TODO(upstream): unskip after fix to https://github.com/flutter/flutter/issues/161073
591+ skip: Platform .isWindows);
585592 });
586593
587594 group ('error banner' , () {
You can’t perform that action at this time.
0 commit comments