Skip to content

Commit aec08e5

Browse files
committed
CS Fix.
1 parent 6ebd471 commit aec08e5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/cypress/integration/insert-character-in-post.test.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,12 @@ describe( 'Insert character in post', () => {
2828
*/
2929
cy.get( 'body' ).then( ( $body ) => {
3030
// WP 5.5
31-
if ( $body.find( '.block-editor-inserter__search-input' ).length > 0 ) {
32-
cy.get( '.block-editor-inserter__search-input' ).type( 'Paragraph' );
31+
if (
32+
$body.find( '.block-editor-inserter__search-input' ).length > 0
33+
) {
34+
cy.get( '.block-editor-inserter__search-input' ).type(
35+
'Paragraph'
36+
);
3337
} else {
3438
cy.get( '.components-search-control__input' ).type(
3539
'Paragraph'

0 commit comments

Comments
 (0)