Try: Indicate when text color in post editor is inherited from Global Styles #98830
Annotations
12 errors, 1 warning, and 1 notice
Run the tests:
test/e2e/specs/editor/various/a11y.spec.js#L94
1) [webkit] › editor/various/a11y.spec.js:84:2 › a11y (@Firefox, @WebKit) › should return focus to the first tabbable in a modal after blurring a tabbable
TimeoutError: locator.click: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for locator('role=dialog[name="Keyboard shortcuts"i]').locator('div').last()
============================================================
92 | .locator( 'role=dialog[name="Keyboard shortcuts"i] >> div' )
93 | .last();
> 94 | await last.click();
| ^
95 |
96 | await pageUtils.pressKeys( 'Tab' );
97 |
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/a11y.spec.js:94:14
|
Run the tests:
test/e2e/specs/editor/various/a11y.spec.js#L112
2) [webkit] › editor/various/a11y.spec.js:105:2 › a11y (@Firefox, @WebKit) › should return focus to the last tabbable in a modal after blurring a tabbable and tabbing in reverse direction
TimeoutError: page.click: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for locator('role=heading[name="Keyboard shortcuts"i]')
============================================================
110 |
111 | // Click a non-focusable element before the first tabbable within the modal.
> 112 | await page.click( 'role=heading[name="Keyboard shortcuts"i]' );
| ^
113 |
114 | await pageUtils.pressKeys( 'shift+Tab' );
115 |
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/a11y.spec.js:112:14
|
Run the tests:
test/e2e/specs/editor/various/inserting-blocks.spec.js#L65
3) [webkit] › editor/various/inserting-blocks.spec.js:29:2 › Inserting blocks (@Firefox, @WebKit) › inserts blocks by dragging and dropping from the global inserter
TimeoutError: locator.boundingBox: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for locator('[data-type="core/paragraph"]').locator('text=Dummy text')
============================================================
63 | 'role=listbox[name="Blocks"i] >> role=option[name="Heading"i]'
64 | );
> 65 | const paragraphBoundingBox = await paragraphBlock.boundingBox();
| ^
66 |
67 | await expect( insertingBlocksUtils.indicator ).toBeVisible();
68 | await insertingBlocksUtils.expectIndicatorBelowParagraph(
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:65:53
|
Run the tests:
test/e2e/specs/editor/various/inserting-blocks.spec.js#L128
4) [webkit] › editor/various/inserting-blocks.spec.js:94:2 › Inserting blocks (@Firefox, @WebKit) › cancels dragging blocks from the global inserter by pressing Escape
TimeoutError: locator.boundingBox: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for locator('[data-type="core/paragraph"]').locator('text=Dummy text')
============================================================
126 | 'role=listbox[name="Blocks"i] >> role=option[name="Heading"i]'
127 | );
> 128 | const paragraphBoundingBox = await paragraphBlock.boundingBox();
| ^
129 |
130 | await page.mouse.down();
131 |
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:128:53
|
Run the tests:
test/e2e/specs/editor/various/inserting-blocks.spec.js#L343
5) [webkit] › editor/various/inserting-blocks.spec.js:306:2 › Inserting blocks (@Firefox, @WebKit) › cancels dragging patterns from the global inserter by pressing Escape
TimeoutError: locator.boundingBox: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for locator('[data-type="core/paragraph"]').locator('text=Dummy text')
============================================================
341 | );
342 |
> 343 | const paragraphBoundingBox = await paragraphBlock.boundingBox();
| ^
344 |
345 | await page.mouse.down();
346 |
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:343:53
|
Run the tests:
test/e2e/specs/editor/various/inserting-blocks.spec.js#L521
6) [webkit] › editor/various/inserting-blocks.spec.js:505:2 › Inserting blocks (@Firefox, @WebKit) › inserts a block in proper place after having clicked `Browse All` from block appender
TimeoutError: locator.click: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for frameLocator('[name="editor-canvas"]').getByRole('button', { name: 'Group: Gather blocks in a container.' })
============================================================
519 | name: 'Group: Gather blocks in a container.',
520 | } )
> 521 | .click();
| ^
522 | await editor.canvas
523 | .getByRole( 'button', {
524 | name: 'Add block',
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:521:5
|
Run the tests:
test/e2e/specs/editor/various/inserting-blocks.spec.js#L569
7) [webkit] › editor/various/inserting-blocks.spec.js:553:2 › Inserting blocks (@Firefox, @WebKit) › passes the search value in the main inserter when clicking `Browse all`
TimeoutError: locator.click: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for frameLocator('[name="editor-canvas"]').getByRole('button', { name: 'Group: Gather blocks in a container.' })
============================================================
567 | name: 'Group: Gather blocks in a container.',
568 | } )
> 569 | .click();
| ^
570 | await editor.canvas
571 | .getByRole( 'button', {
572 | name: 'Add block',
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:569:5
|
Run the tests:
test/e2e/specs/editor/various/multi-block-selection.spec.js#L173
8) [webkit] › editor/various/multi-block-selection.spec.js:153:2 › Multi-block selection (@Firefox, @WebKit) › should select and deselect with shift and arrow keys
Error: expect(received).toEqual(expected) // deep equality
- Expected - 2
+ Received + 2
Array [
- 3,
- 4,
+ 1,
+ 2,
]
Call Log:
- Timeout 5000ms exceeded while waiting on the predicate
171 | await expect
172 | .poll( multiBlockSelectionUtils.getSelectedFlatIndices )
> 173 | .toEqual( [ 3, 4 ] );
| ^
174 |
175 | await page.keyboard.press( 'Shift+ArrowDown' );
176 | await expect( multiBlockSelectionUtils.assertNativeSelection ).toPass();
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/multi-block-selection.spec.js:173:5
|
Run the tests:
test/e2e/specs/editor/various/multi-block-selection.spec.js#L235
9) [webkit] › editor/various/multi-block-selection.spec.js:218:2 › Multi-block selection (@Firefox, @WebKit) › should deselect with Escape
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 0
Array [
1,
2,
- 3,
]
Call Log:
- Timeout 5000ms exceeded while waiting on the predicate
233 | await expect
234 | .poll( multiBlockSelectionUtils.getSelectedFlatIndices )
> 235 | .toEqual( [ 1, 2, 3 ] );
| ^
236 |
237 | await page.keyboard.press( 'Escape' );
238 |
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/multi-block-selection.spec.js:235:5
|
Run the tests:
packages/e2e-test-utils-playwright/src/editor/save-draft.ts#L14
10) [webkit] › editor/various/multi-block-selection.spec.js:289:2 › Multi-block selection (@Firefox, @WebKit) › should properly select a single block even if `shift` was held for the selection (-firefox)
TimeoutError: locator.click: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for getByRole('region', { name: 'Editor top bar' }).getByRole('button', { name: 'Save draft' })
locator resolved to <button type="button" aria-disabled="true" aria-label="S…>Save draft</button>
attempting click action
waiting for element to be visible, enabled and stable
element is not enabled - waiting...
============================================================
at ../../../packages/e2e-test-utils-playwright/src/editor/save-draft.ts:14
12 | .getByRole( 'region', { name: 'Editor top bar' } )
13 | .getByRole( 'button', { name: 'Save draft' } )
> 14 | .click();
| ^
15 |
16 | await this.page
17 | .getByRole( 'button', { name: 'Dismiss this notice' } )
at Editor.saveDraft (/home/runner/work/gutenberg/gutenberg/packages/e2e-test-utils-playwright/src/editor/save-draft.ts:14:4)
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/multi-block-selection.spec.js:302:16
|
Archive debug artifacts (screenshots, traces)
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
Archive flaky tests report
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c, actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Run the tests
26 flaky
[webkit] › editor/various/a11y.spec.js:84:2 › a11y (@Firefox, @WebKit) › should return focus to the first tabbable in a modal after blurring a tabbable
[webkit] › editor/various/a11y.spec.js:105:2 › a11y (@Firefox, @WebKit) › should return focus to the last tabbable in a modal after blurring a tabbable and tabbing in reverse direction
[webkit] › editor/various/inserting-blocks.spec.js:29:2 › Inserting blocks (@Firefox, @WebKit) › inserts blocks by dragging and dropping from the global inserter
[webkit] › editor/various/inserting-blocks.spec.js:94:2 › Inserting blocks (@Firefox, @WebKit) › cancels dragging blocks from the global inserter by pressing Escape
[webkit] › editor/various/inserting-blocks.spec.js:306:2 › Inserting blocks (@Firefox, @WebKit) › cancels dragging patterns from the global inserter by pressing Escape
[webkit] › editor/various/inserting-blocks.spec.js:505:2 › Inserting blocks (@Firefox, @WebKit) › inserts a block in proper place after having clicked `Browse All` from block appender
[webkit] › editor/various/inserting-blocks.spec.js:553:2 › Inserting blocks (@Firefox, @WebKit) › passes the search value in the main inserter when clicking `Browse all`
[webkit] › editor/various/multi-block-selection.spec.js:153:2 › Multi-block selection (@Firefox, @WebKit) › should select and deselect with shift and arrow keys
[webkit] › editor/various/multi-block-selection.spec.js:218:2 › Multi-block selection (@Firefox, @WebKit) › should deselect with Escape
[webkit] › editor/various/multi-block-selection.spec.js:289:2 › Multi-block selection (@Firefox, @WebKit) › should properly select a single block even if `shift` was held for the selection (-firefox)
[webkit] › editor/various/multi-block-selection.spec.js:355:2 › Multi-block selection (@Firefox, @WebKit) › should properly select part of nested rich text block while holding shift (-firefox)
[webkit] › editor/various/multi-block-selection.spec.js:393:2 › Multi-block selection (@Firefox, @WebKit) › should select by dragging
[webkit] › editor/various/multi-block-selection.spec.js:424:2 › Multi-block selection (@Firefox, @WebKit) › should select by dragging into nested block
[webkit] › editor/various/multi-block-selection.spec.js:460:2 › Multi-block selection (@Firefox, @WebKit) › should cut and paste
[webkit] › editor/various/multi-block-selection.spec.js:484:2 › Multi-block selection (@Firefox, @WebKit) › should copy and paste
[webkit] › editor/various/multi-block-selection.spec.js:685:2 › Multi-block selection (@Firefox, @WebKit) › should preserve dragged selection on move
[webkit] › editor/various/multi-block-selection.spec.js:788:2 › Multi-block selection (@Firefox, @WebKit) › should set attributes for multiple paragraphs
[webkit] › editor/various/multi-block-selection.spec.js:840:2 › Multi-block selection (@Firefox, @WebKit) › should gradually multi-select
[webkit] › editor/various/multi-block-selection.spec.js:904:2 › Multi-block selection (@Firefox, @WebKit) › should multi-select from within the list block
[webkit] › editor/various/multi-block-selection.spec.js:977:2 › Multi-block selection (@Firefox, @WebKit) › should multi-select in the ListView component with shift + click
[webkit] › editor/various/multi-block-selection.spec.js:1078:2 › Multi-block selection (@Firefox, @WebKit) › should forward delete across blocks
[webkit] › editor/various/multi-block-selection.spec.js:1210:2 › Multi-block selection (@Firefox, @WebKit) › should select separator (single element block)
[webkit] › editor/various/multi-block-selection.spec.js:1244:2 › Multi-block selection (@Firefox, @WebKit) › should partially select with shift + click
[webkit] › editor/various/multi-block-selection.spec.js:1296:3 › Multi-block selection (@Firefox, @WebKit) › shift+click multi-selection › should multi-select block with text selection and a block without text selection
[webkit] › editor/various/multi-block-selection.spec.js:1324:3 › Multi-block selection (@Firefox,
|
Loading