Try: Indicate when text color in post editor is inherited from Global Styles #87723
Annotations
10 errors and 1 notice
Run the tests:
test/e2e/specs/editor/various/a11y-region-navigation.spec.js#L31
1) [webkit] › editor/various/a11y-region-navigation.spec.js:15:2 › Region navigation (@Firefox, @WebKit) › navigates forward and back again
Error: Timed out 5000ms waiting for expect(received).toBeFocused()
Call log:
- expect.toBeFocused with timeout 5000ms
- waiting for frameLocator('[name="editor-canvas"]').getByRole('document', { name: 'Block: Paragraph' }).filter({ hasText: 'Dummy text' })
- waiting for frameLocator('[name="editor-canvas"]').getByRole('document', { name: 'Block: Paragraph' }).filter({ hasText: 'Dummy text' })
29 | .filter( { hasText: 'Dummy text' } );
30 |
> 31 | await expect( dummyParagraph ).toBeFocused();
| ^
32 |
33 | // Navigate to first region and check that we made it. Must navigate forward 4 times as initial focus is placed in post title field.
34 | await page.keyboard.press( 'Control+`' );
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/a11y-region-navigation.spec.js:31:34
|
Run the tests:
test/e2e/specs/editor/various/a11y.spec.js#L71
2) [webkit] › editor/various/a11y.spec.js:50:2 › a11y (@Firefox, @WebKit) › should constrain tabbing within a modal
Error: Timed out 5000ms waiting for expect(received).not.toBeFocused()
Call log:
- expect.not.toBeFocused with timeout 5000ms
- waiting for locator('role=dialog[name="Keyboard shortcuts"i]').locator('role=button[name="Close"i]')
- waiting for locator('role=dialog[name="Keyboard shortcuts"i]').locator('role=button[name="Close"i]')
69 | // experience.
70 | // See: https://github.com/WordPress/gutenberg/issues/9410
> 71 | await expect( closeButton ).not.toBeFocused();
| ^
72 |
73 | // Open keyboard shortcuts modal.
74 | await pageUtils.pressKeys( 'Tab' );
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/a11y.spec.js:71:35
|
Run the tests:
test/e2e/specs/editor/various/a11y.spec.js#L94
3) [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
4) [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#L58
5) [webkit] › editor/various/inserting-blocks.spec.js:22: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')
============================================================
56 | 'role=listbox[name="Blocks"i] >> role=option[name="Heading"i]'
57 | );
> 58 | const paragraphBoundingBox = await paragraphBlock.boundingBox();
| ^
59 |
60 | await expect( insertingBlocksUtils.indicator ).toBeVisible();
61 | // Expect the indicator to be below the paragraph block.
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:58:53
|
Run the tests:
test/e2e/specs/editor/various/inserting-blocks.spec.js#L139
6) [webkit] › editor/various/inserting-blocks.spec.js:105: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')
============================================================
137 | 'role=listbox[name="Blocks"i] >> role=option[name="Heading"i]'
138 | );
> 139 | const paragraphBoundingBox = await paragraphBlock.boundingBox();
| ^
140 |
141 | await page.mouse.down();
142 | // Call the move function twice to make sure the `dragOver` event is sent.
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:139:53
|
Run the tests:
test/e2e/specs/editor/various/inserting-blocks.spec.js#L210
7) [webkit] › editor/various/inserting-blocks.spec.js:166:2 › Inserting blocks (@Firefox, @WebKit) › inserts patterns 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')
============================================================
208 | // await expect( insertingBlocksUtils.indicator ).toBeVisible();
209 |
> 210 | const paragraphBoundingBox = await paragraphBlock.boundingBox();
| ^
211 |
212 | await page.mouse.down();
213 | // Call the move function twice to make sure the `dragOver` event is sent.
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:210:53
|
Run the tests:
test/e2e/specs/editor/various/inserting-blocks.spec.js#L278
8) [webkit] › editor/various/inserting-blocks.spec.js:241: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')
============================================================
276 | );
277 |
> 278 | const paragraphBoundingBox = await paragraphBlock.boundingBox();
| ^
279 |
280 | await page.mouse.down();
281 | // Call the move function twice to make sure the `dragOver` event is sent.
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/inserting-blocks.spec.js:278:53
|
Run the tests:
test/e2e/specs/editor/various/multi-block-selection.spec.js#L1201
9) [webkit] › editor/various/multi-block-selection.spec.js:1169:2 › Multi-block selection › should partially select with shift + click (@WebKit)
TimeoutError: locator.boundingBox: Timeout 10000ms exceeded.
=========================== logs ===========================
waiting for getByRole('region', { name: 'Editor content' }).getByText('1', { exact: true })
============================================================
1199 | .getByRole( 'region', { name: 'Editor content' } )
1200 | .getByText( '1', { exact: true } );
> 1201 | const strongBox = await strongText.boundingBox();
| ^
1202 | // Focus and move the caret to the end.
1203 | await strongText.click( {
1204 | // Ensure clicking on the right half of the element.
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/multi-block-selection.spec.js:1201:38
|
Run the tests:
test/e2e/specs/editor/various/a11y.spec.js#L71
10) [firefox] › editor/various/a11y.spec.js:50:2 › a11y (@Firefox, @WebKit) › should constrain tabbing within a modal
Error: Timed out 5000ms waiting for expect(received).not.toBeFocused()
Call log:
- expect.not.toBeFocused with timeout 5000ms
- waiting for locator('role=dialog[name="Keyboard shortcuts"i]').locator('role=button[name="Close"i]')
- waiting for locator('role=dialog[name="Keyboard shortcuts"i]').locator('role=button[name="Close"i]')
69 | // experience.
70 | // See: https://github.com/WordPress/gutenberg/issues/9410
> 71 | await expect( closeButton ).not.toBeFocused();
| ^
72 |
73 | // Open keyboard shortcuts modal.
74 | await pageUtils.pressKeys( 'Tab' );
at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/a11y.spec.js:71:35
|
Run the tests
10 flaky
[webkit] › editor/various/a11y-region-navigation.spec.js:15:2 › Region navigation (@Firefox, @WebKit) › navigates forward and back again
[webkit] › editor/various/a11y.spec.js:50:2 › a11y (@Firefox, @WebKit) › should constrain tabbing within a modal
[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:22:2 › Inserting blocks (@Firefox, @WebKit) › inserts blocks by dragging and dropping from the global inserter
[webkit] › editor/various/inserting-blocks.spec.js:105:2 › Inserting blocks (@Firefox, @WebKit) › cancels dragging blocks from the global inserter by pressing Escape
[webkit] › editor/various/inserting-blocks.spec.js:166:2 › Inserting blocks (@Firefox, @WebKit) › inserts patterns by dragging and dropping from the global inserter
[webkit] › editor/various/inserting-blocks.spec.js:241:2 › Inserting blocks (@Firefox, @WebKit) › cancels dragging patterns from the global inserter by pressing Escape
[webkit] › editor/various/multi-block-selection.spec.js:1169:2 › Multi-block selection › should partially select with shift + click (@WebKit)
[firefox] › editor/various/a11y.spec.js:50:2 › a11y (@Firefox, @WebKit) › should constrain tabbing within a modal
2 skipped
230 passed (16.4m)
|
The logs for this run have expired and are no longer available.
Loading