Skip to content

Commit

Permalink
fix: update incorrect tests
Browse files Browse the repository at this point in the history
  • Loading branch information
idebenone committed Nov 25, 2024
1 parent b24f4a5 commit 057914c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/cypress/tests/modules/BlockEvents/Backspace.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ describe('Backspace keydown', function () {
it('   | — should delete visible and invisble whitespaces in the abscence of any non whitespace characters', function () {
createEditorWithTextBlocks([
'1',
'  ',
'   ',
]);

cy.get('[data-cy=editorjs]')
Expand All @@ -131,6 +131,8 @@ describe('Backspace keydown', function () {
.click()
.type('{downArrow}')
.type('{backspace}')
.type('{backspace}')
.type('{backspace}')
.type('{backspace}');

cy.get('[data-cy=editorjs]')
Expand Down

0 comments on commit 057914c

Please sign in to comment.