Skip to content

Commit

Permalink
Standard -> Not synced
Browse files Browse the repository at this point in the history
  • Loading branch information
richtabor committed Sep 26, 2023
1 parent 1c30e9d commit 9cf4d86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const { useLocation, useHistory } = unlock( routerPrivateApis );
const SYNC_FILTERS = {
all: __( 'All' ),
[ PATTERN_SYNC_TYPES.full ]: __( 'Synced' ),
[ PATTERN_SYNC_TYPES.unsynced ]: __( 'Standard' ),
[ PATTERN_SYNC_TYPES.unsynced ]: __( 'Not synced' ),
};

const SYNC_DESCRIPTIONS = {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/specs/editor/blocks/query.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test.describe( 'Query block', () => {

await page
.getByRole( 'dialog', { name: 'Choose a pattern' } )
.getByRole( 'option', { name: 'Standard' } )
.getByRole( 'option', { name: 'Not synced' } )
.click();

Check failure on line 43 in test/e2e/specs/editor/blocks/query.spec.js

View workflow job for this annotation

GitHub Actions / Playwright - 1

[chromium] › editor/blocks/query.spec.js:32:3 › Query block › Query block insertion › List

1) [chromium] › editor/blocks/query.spec.js:32:3 › Query block › Query block insertion › List ──── TimeoutError: locator.click: Timeout 10000ms exceeded. =========================== logs =========================== waiting for getByRole('dialog', { name: 'Choose a pattern' }).getByRole('option', { name: 'Not synced' }) ============================================================ 41 | .getByRole( 'dialog', { name: 'Choose a pattern' } ) 42 | .getByRole( 'option', { name: 'Not synced' } ) > 43 | .click(); | ^ 44 | 45 | await expect.poll( editor.getBlocks ).toMatchObject( [ 46 | { at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/blocks/query.spec.js:43:6

Check failure on line 43 in test/e2e/specs/editor/blocks/query.spec.js

View workflow job for this annotation

GitHub Actions / Playwright - 1

[chromium] › editor/blocks/query.spec.js:32:3 › Query block › Query block insertion › List

1) [chromium] › editor/blocks/query.spec.js:32:3 › Query block › Query block insertion › List ──── Retry #1 ─────────────────────────────────────────────────────────────────────────────────────── TimeoutError: locator.click: Timeout 10000ms exceeded. =========================== logs =========================== waiting for getByRole('dialog', { name: 'Choose a pattern' }).getByRole('option', { name: 'Not synced' }) ============================================================ 41 | .getByRole( 'dialog', { name: 'Choose a pattern' } ) 42 | .getByRole( 'option', { name: 'Not synced' } ) > 43 | .click(); | ^ 44 | 45 | await expect.poll( editor.getBlocks ).toMatchObject( [ 46 | { at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/blocks/query.spec.js:43:6

Check failure on line 43 in test/e2e/specs/editor/blocks/query.spec.js

View workflow job for this annotation

GitHub Actions / Playwright - 1

[chromium] › editor/blocks/query.spec.js:32:3 › Query block › Query block insertion › List

1) [chromium] › editor/blocks/query.spec.js:32:3 › Query block › Query block insertion › List ──── Retry #2 ─────────────────────────────────────────────────────────────────────────────────────── TimeoutError: locator.click: Timeout 10000ms exceeded. =========================== logs =========================== waiting for getByRole('dialog', { name: 'Choose a pattern' }).getByRole('option', { name: 'Not synced' }) ============================================================ 41 | .getByRole( 'dialog', { name: 'Choose a pattern' } ) 42 | .getByRole( 'option', { name: 'Not synced' } ) > 43 | .click(); | ^ 44 | 45 | await expect.poll( editor.getBlocks ).toMatchObject( [ 46 | { at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/blocks/query.spec.js:43:6

await expect.poll( editor.getBlocks ).toMatchObject( [
Expand Down

0 comments on commit 9cf4d86

Please sign in to comment.