Skip to content

Commit

Permalink
Break a test.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwilsoncc committed May 9, 2023
1 parent ddf9924 commit 3b09892
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cypress/e2e/insert-character-in-post.test.js
Expand Up @@ -70,9 +70,9 @@ describe( 'Insert character in post', () => {

cy.get( 'body' ).invoke( 'text' ).then( text => {
if ( text.includes( 'Hello world∀' ) ) {
expect( text ).to.contain( 'Hello world∀' );
expect( text ).not.to.contain( 'Hello world∀' );
} else if ( text.includes( '∀Hello world' ) ) {
expect( text ).to.contain( '∀Hello world' );
expect( text ).not.to.contain( '∀Hello world' );
}
} );
} );
Expand Down

0 comments on commit 3b09892

Please sign in to comment.