浏览代码

test: skip the secondary tap test on Windows

Lucas.Xu 2 年之前
父节点
当前提交
c793eb67fc
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      frontend/app_flowy/packages/appflowy_editor/test/service/selection_service_test.dart

+ 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();