Jelajahi Sumber

test: skip the secondary tap test on Windows

Lucas.Xu 2 tahun lalu
induk
melakukan
c793eb67fc

+ 7 - 0
frontend/app_flowy/packages/appflowy_editor/test/service/selection_service_test.dart

@@ -1,3 +1,5 @@
+import 'dart:io';
+
 import 'package:appflowy_editor/appflowy_editor.dart';
 import 'package:appflowy_editor/src/service/context_menu/context_menu.dart';
 import 'package:flutter/gestures.dart';
@@ -116,6 +118,11 @@ void main() async {
 
       // test built in context menu items
 
+      // Skip the Windows platform because the rich_clipboard package doesn't support it perfectly.
+      if (Platform.isWindows) {
+        return;
+      }
+
       // cut
       await tester.tap(find.text('Cut'));
       await tester.pump();