Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Flaky Test] can be inserted after refresh #55509

Closed
github-actions bot opened this issue Oct 20, 2023 · 4 comments
Closed

[Flaky Test] can be inserted after refresh #55509

github-actions bot opened this issue Oct 20, 2023 · 4 comments
Labels
[Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. [Type] Flaky Test Auto-generated flaky test report issue

Comments

@github-actions
Copy link

github-actions bot commented Oct 20, 2023

Flaky test detected. This is an auto-generated issue by GitHub Actions. Please do NOT edit this manually.

Test title

can be inserted after refresh

Test path

/test/e2e/specs/editor/various/patterns.spec.js

Errors

[2023-10-20T11:23:50.622Z] Test passed after 1 failed attempt on trunk.
[2023-10-20T11:57:42.509Z] Test passed after 2 failed attempts on trunk.
[2023-10-20T12:25:02.085Z] Test passed after 1 failed attempt on update/remove-string-from-pages-sidebar.
[2023-10-20T12:29:36.514Z] Test passed after 2 failed attempts on rnmobile/reusable-block-title-dark-mode.
[2023-10-20T13:39:17.261Z] Test passed after 1 failed attempt on update/remove-string-from-pages-sidebar.
[2023-10-20T14:05:43.275Z] Test passed after 1 failed attempt on update/remove-string-from-pages-sidebar.
[2023-10-20T15:20:14.010Z] Test passed after 1 failed attempt on 55224/migrate-BlockPatternList.
[2023-10-20T16:42:55.596Z] Test passed after 2 failed attempts on trunk.
[2023-10-20T16:56:16.929Z] Test passed after 1 failed attempt on fix/border-color-state-description.
[2023-10-20T18:36:56.956Z] Test passed after 1 failed attempt on trunk.
[2023-10-20T19:36:38.908Z] Test passed after 2 failed attempts on try/content-transforms.
[2023-10-20T20:07:00.390Z] Test passed after 2 failed attempts on try/WPBlockVariationScope-hidden.
[2023-10-20T21:09:44.722Z] Test passed after 2 failed attempts on tweak/toolbar-buttons.
[2023-10-20T21:25:35.042Z] Test passed after 2 failed attempts on tweak/post-publish-external.
[2023-10-21T18:56:13.150Z] Test passed after 1 failed attempt on scripts-readme-typo.
[2023-10-23T12:54:53.875Z] Test passed after 2 failed attempts on try/pages-split.
[2023-10-23T13:00:37.472Z] Test passed after 2 failed attempts on update/add-unit-test-for-duotone-enhanced-pagination.
[2023-10-23T14:20:59.213Z] Test passed after 2 failed attempts on add/e2e-utils-editor-preferences.
[2023-10-23T15:07:47.855Z] Test passed after 2 failed attempts on rnmobile/appium-2.
[2023-10-23T15:26:22.057Z] Test passed after 1 failed attempt on fix/saving-buttons-a11y.
[2023-10-23T15:29:08.297Z] Test passed after 2 failed attempts on rnmobile/appium-2.
[2023-10-23T15:32:36.602Z] Test passed after 1 failed attempt on fix/navigation-link-encode.
[2023-10-23T20:30:52.319Z] Test passed after 2 failed attempts on test/improve-e2e-test-consistency.
[2023-10-24T00:25:30.801Z] Test passed after 1 failed attempt on test/improve-e2e-test-consistency.
[2023-10-24T10:41:23.466Z] Test passed after 1 failed attempt on trunk.
[2023-11-03T00:58:28.318Z] Test passed after 2 failed attempts on tweak/post-publish-external.
[2024-01-25T20:26:28.677Z] Test passed after 1 failed attempt on try/avoid-fetching-all-reusable-blocks.
[2024-04-09T10:53:40.007Z] Test passed after 1 failed attempt on try/batch-resolvers.
[2024-08-14T15:16:43.007Z] Test passed after 1 failed attempt on update/frontend-block-style-variation-class-generation.
Error: apiRequestContext.fetch: socket hang up
Call log:
  - → GET http://localhost:8889/index.php?rest_route=%2Fwp%2Fv2%2Fposts&per_page=100&status=publish%2Cfuture%2Cdraft%2Cpending%2Cprivate%2Ctrash
  -   user-agent: Playwright/1.46.0 (x64; ubuntu 22.04) node/20.16 CI/1
  -   accept: */*
  -   accept-encoding: gzip,deflate,br
  -   X-WP-Nonce: c5dbf042ac
  -   cookie: wordpress_test_cookie=WP%20Cookie%20check; wordpress_logged_in_23778236db82f19306f247e20a353a99=admin%7C1723820515%7CNOZTXU8w7vEXHRfizWKkvczy97ROr5GVQwzfw54HNXe%7C522955d4fd4181f411676006d720f6a26440aee30dbb18ee198715f7854ed5c1; wp-settings-time-1=1723648167

    at RequestUtils.rest (/home/runner/work/gutenberg/gutenberg/packages/e2e-test-utils-playwright/src/request-utils/rest.ts:119:39)
    at RequestUtils.deleteAllPosts (/home/runner/work/gutenberg/gutenberg/packages/e2e-test-utils-playwright/src/request-utils/posts.ts:29:27)
    at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/patterns.spec.js:113:22
@github-actions github-actions bot added the [Type] Flaky Test Auto-generated flaky test report issue label Oct 20, 2023
github-actions bot referenced this issue Oct 20, 2023
* Add option to convert Classic block to blocks in Missing block

* Add integration tests for Classic block

* Update `react-native-editor` changelog
github-actions bot referenced this issue Oct 20, 2023
* Improve focus management

This commit removes the logic to set focus differently
based on event.pointerType and instead sets focus on the
dialog itself when the lightbox opens, and on the lightbox
trigger when the lightbox closes.

* Add delay before focusing when closing lightbox

* Put focus back on close button when opening lightbox

It turns out that placing focus on the modal was causing
inconsistent behavior in Safari, so I've put the focus back
on the close button when the lightbox opens, which
performs predictably.

I've also added a tabindex to the image, which prevents
the focus ring from erroneously showing when opening the lightbox
with a mouse in Chrome and Firefox.

* Move focus to the dialog when opening the lightbox.

* Fix SVG markup.

* Consistent indentation with spaces.

* Remove unnecessary tabindex

---------

Co-authored-by: Andrea Fercia <a.fercia@gmail.com>
github-actions bot referenced this issue Oct 20, 2023
* Use PostCSS + PostCSS plugins for style transformation.

* Remove the now replaced CSS parsing code.

* Use synchronous PostCSS API.

* Update package-lock.json

* Add basic wrapping test

* Use correct postcss-prefixwrap package

* Update test snapshots

* Add more tests and fix type signature

* Ensure that data URLs do not break the CSS transformer

* Do not optional chain something that is not optional

* Filter out non-CSS styles before passing the array to transformStyles

---------

Co-authored-by: Luis Felipe Zaguini <luisfelipezaguini@gmail.com>
Copy link
Author

This issue has gone 15 days without any activity.

@github-actions github-actions bot added the [Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. label Nov 29, 2023
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Nov 30, 2023
@github-actions github-actions bot reopened this Jan 25, 2024
@github-actions github-actions bot removed the [Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. label Jan 26, 2024
Copy link
Author

This issue has gone 15 days without any activity.

@github-actions github-actions bot added the [Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. label Feb 10, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Feb 11, 2024
@github-actions github-actions bot reopened this Apr 9, 2024
@github-actions github-actions bot removed the [Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. label Apr 10, 2024
Copy link
Author

This issue has gone 15 days without any activity.

@github-actions github-actions bot added the [Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. label Apr 26, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Apr 27, 2024
@github-actions github-actions bot reopened this Aug 14, 2024
@github-actions github-actions bot removed the [Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. label Aug 15, 2024
Copy link
Author

This issue has gone 15 days without any activity.

@github-actions github-actions bot added the [Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. label Aug 30, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Sep 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Status] Stale Gives the original author opportunity to update before closing. Can be reopened as needed. [Type] Flaky Test Auto-generated flaky test report issue
Projects
None yet
Development

No branches or pull requests

0 participants