Skip to content

Commit

Permalink
Fix one more test.
Browse files Browse the repository at this point in the history
  • Loading branch information
afercia committed Sep 10, 2024
1 parent a1c3577 commit d4c3e20
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/e2e/specs/site-editor/styles.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ test.describe( 'Styles', () => {
// Navigate to Styles -> Blocks -> Heading -> Typography
await topBar.getByRole( 'button', { name: 'Styles' } ).click();
await page.getByRole( 'button', { name: 'Blocks' } ).click();
await page.getByRole( 'button', { name: 'Social Icons' } ).click();
await page
.getByRole( 'button', { name: 'Social Icons', exact: true } )
.click();

// Find the second padding control and change the padding value
await page
Expand Down

0 comments on commit d4c3e20

Please sign in to comment.