Skip to content

Commit

Permalink
test: fix unit test for firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur-vaadin committed Mar 18, 2024
1 parent 3611b54 commit 4cebfe3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/grid-pro/test/edit-column-type.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,8 @@ describe('edit column editor type', () => {
cell.focus();
await sendKeys({ down: 'a' });
await sendKeys({ down: 'b' });
editor = column._getEditorComponent(cell);
expect(editor.value).to.be.equal('ab');
await sendKeys({ down: 'Enter' });
expect(cell._content.textContent).to.equal('ab');
});
});
});

0 comments on commit 4cebfe3

Please sign in to comment.