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 1
1
import 'dart:async' ;
2
2
import 'dart:convert' ;
3
+ import 'dart:io' ;
3
4
4
5
import 'package:checks/checks.dart' ;
5
6
import 'package:file_picker/file_picker.dart' ;
@@ -581,7 +582,13 @@ void main() {
581
582
});
582
583
583
584
// 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);
585
592
});
586
593
587
594
group ('error banner' , () {
You can’t perform that action at this time.
0 commit comments