Skip to content

Commit

Permalink
Remove testid and update tests (#40534)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbravobernal authored Apr 22, 2022
1 parent dc1529a commit e7fbb88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
6 changes: 1 addition & 5 deletions packages/block-library/src/comment-template/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,7 @@ export default function CommentTemplateEdit( {
}

if ( ! commentTree.length ) {
return (
<p { ...blockProps } data-testid="noresults">
{ __( 'No results found.' ) }
</p>
);
return <p { ...blockProps }>{ __( 'No results found.' ) }</p>;
}

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,7 @@ describe( 'Comment Query Loop', () => {
await trashAllComments();
await createNewPost();
await insertBlock( 'Comments Query Loop' );
await page.waitForSelector( '[data-testid="noresults"]' );
expect(
await page.evaluate(
( el ) => el.innerText,
await page.$( '[data-testid="noresults"]' )
)
).toEqual( 'No results found.' );
await page.waitForXPath( '//p[contains(text(), "No results found.")]' );
} );
it( 'Pagination links are working as expected', async () => {
await createNewPost();
Expand Down

0 comments on commit e7fbb88

Please sign in to comment.