We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a332f80 commit 076d0deCopy full SHA for 076d0de
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,13 @@ void main() {
581
582
});
583
584
// TODO test what happens when capturing/uploading fails
- });
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);
592
593
594
group('error banner', () {
0 commit comments