We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb3e2aa commit c349d21Copy full SHA for c349d21
test/widgets/compose_box_test.dart
@@ -1,5 +1,6 @@
1
import 'dart:async';
2
import 'dart:convert';
3
+import 'dart:io';
4
5
import 'package:checks/checks.dart';
6
import 'package:file_picker/file_picker.dart';
@@ -581,7 +582,12 @@ void main() {
581
582
});
583
584
// TODO test what happens when capturing/uploading fails
- });
585
+
586
+ // This test fails on Windows due to the Platform.pathSeparator.
587
+ // used in the split function of the XFile.name getter in cross_file being '\' instead of '/'.
588
+ // This results in the getter returning the entire path on Windows instead of the
589
+ // last word present after the last '/' in the path.
590
+ }, skip: Platform.isWindows);
591
592
593
group('error banner', () {
0 commit comments