Skip to content

Commit

Permalink
TEMP: fail a test
Browse files Browse the repository at this point in the history
  • Loading branch information
CendioOssman committed Aug 5, 2024
1 parent 9a4beb6 commit 9ddd716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test.keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ describe('Key Event Handling', function () {
expect(kbd.onkeyevent).to.have.been.calledWith(0xffe1, 'ShiftLeft', true);
kbd.onkeyevent.resetHistory();

kbd._handleKeyDown(keyevent('keydown', {code: 'ShiftRight', key: 'Shift', location: 2}));
kbd._handleKeyDown(keyevent('keydown', {code: 'ShiftRight', key: 'ShiftFoo', location: 2}));
expect(kbd.onkeyevent).to.have.been.calledOnce;
expect(kbd.onkeyevent).to.have.been.calledWith(0xffe2, 'ShiftRight', true);
kbd.onkeyevent.resetHistory();
Expand Down

0 comments on commit 9ddd716

Please sign in to comment.