Skip to content

Commit

Permalink
Adjust e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
ellatrix committed Nov 15, 2018
1 parent 72e51c6 commit 8af22d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/e2e/specs/__snapshots__/undo.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exports[`undo Should undo to expected level intervals 1`] = `

exports[`undo should undo typing after arrow navigation 1`] = `
"<!-- wp:paragraph -->
<p>before keyboar after keyboardd</p>
<p>before keyboard after keyboard</p>
<!-- /wp:paragraph -->"
`;

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/specs/undo.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe( 'undo', () => {
await clickBlockAppender();

await page.keyboard.type( 'before keyboard' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowRight' );
await page.keyboard.type( ' after keyboard' );

expect( await getEditedPostContent() ).toMatchSnapshot();
Expand Down

0 comments on commit 8af22d9

Please sign in to comment.