Skip to content

Commit

Permalink
Add deleted test back
Browse files Browse the repository at this point in the history
  • Loading branch information
iansan5653 committed Dec 7, 2023
1 parent 41234aa commit bb17f9a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/test.js
Expand Up @@ -263,6 +263,7 @@ describe('hotkey', function () {
describe('eventToHotkeyString', function () {
const tests = [
['Control+Shift+J', {ctrlKey: true, shiftKey: true, code: 'KeyJ', key: 'J'}],
['Control+Shift+j', {ctrlKey: true, shiftKey: true, code: 'KeyJ', key: 'j'}],
['Control+j', {ctrlKey: true, code: 'KeyJ', key: 'j'}],
['Meta+Shift+p', {key: 'p', metaKey: true, shiftKey: true, code: 'KeyP'}],
['Meta+Shift+8', {key: '8', metaKey: true, shiftKey: true, code: 'Digit8'}],
Expand Down

0 comments on commit bb17f9a

Please sign in to comment.