Skip to content

Commit

Permalink
Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamaduka committed Nov 6, 2023
1 parent 0259607 commit d621f0f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ test.describe( 'RenderAppender prop of InnerBlocks', () => {
const customAppender = page.locator( '.my-custom-awesome-appender' );

// Verify if the custom block appender text is the expected one.
await expect(
customAppender.getByText( 'My custom awesome appender' )
).toBeVisible();
await expect( customAppender ).toContainText(
'My custom awesome appender'
);

// Open the inserter of our custom block appender.
await customAppender
Expand Down Expand Up @@ -77,9 +77,9 @@ test.describe( 'RenderAppender prop of InnerBlocks', () => {
} );

// Verify if the custom block appender text is the expected one.
await expect(
dynamimcAppender.getByText( 'Empty Blocks Appender' )
).toBeVisible();
await expect( dynamimcAppender ).toContainText(
'Empty Blocks Appender'
);

// Open the inserter of our custom block appender.
await addBlockBtn.click();
Expand Down

0 comments on commit d621f0f

Please sign in to comment.