This is an automated email from the ASF dual-hosted git repository.

tiagobento pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-tools.git


The following commit(s) were added to refs/heads/main by this push:
     new 8485a25d45d kie-issues#1873: The `boxed-expression-component` "Copy, 
Cut and Paste expressions" tests are flaky on Google Chrome (#3002)
8485a25d45d is described below

commit 8485a25d45d246f17233444f35a829e254552132
Author: Luiz João Motta <[email protected]>
AuthorDate: Fri Mar 14 13:09:53 2025 -0300

    kie-issues#1873: The `boxed-expression-component` "Copy, Cut and Paste 
expressions" tests are flaky on Google Chrome (#3002)
---
 .../tests-e2e/features/copyPasteExpressions.spec.ts                  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 
a/packages/boxed-expression-component/tests-e2e/features/copyPasteExpressions.spec.ts
 
b/packages/boxed-expression-component/tests-e2e/features/copyPasteExpressions.spec.ts
index 7a7f14bbd82..7d455235338 100644
--- 
a/packages/boxed-expression-component/tests-e2e/features/copyPasteExpressions.spec.ts
+++ 
b/packages/boxed-expression-component/tests-e2e/features/copyPasteExpressions.spec.ts
@@ -20,11 +20,12 @@
 import { expect, test } from "../__fixtures__/base";
 
 test.describe("Copy, Cut and Paste expressions", () => {
-  test.beforeEach(async ({ bee, browserName, clipboard }) => {
+  test.beforeEach(async ({ bee, clipboard }, testInfo) => {
     test.skip(
-      browserName !== "chromium",
+      testInfo.project.name === "webkit",
       "Playwright Webkit doesn't support clipboard permissions: 
https://github.com/microsoft/playwright/issues/13037";
     );
+    test.skip(testInfo.project.name === "Google Chrome", 
"https://github.com/apache/incubator-kie-issues/issues/1873";);
 
     // This is required to enable Playwright to access browser Clipboard
     clipboard.use();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to