Skip to content

Commit

Permalink
Fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ellatrix committed Feb 20, 2018
1 parent 7008b57 commit 4f2b88c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/integration/003-multi-block-selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ describe( 'Multi-block selection', () => {
// Multiselect via keyboard
const isMacOs = Cypress.platform === 'darwin';
if ( isMacOs ) {
cy.get( 'body' ).type( '{meta}a' );
cy.get( lastBlockSelector ).type( '{meta}a' ).type( '{meta}a' );
} else {
cy.get( 'body' ).type( '{ctrl}a' );
cy.get( lastBlockSelector ).type( '{ctrl}a' ).type( '{ctrl}a' );
}

// Verify selection
Expand Down

0 comments on commit 4f2b88c

Please sign in to comment.