From bb17f9a0045896bce1680eda137bbcbfc07ca8eb Mon Sep 17 00:00:00 2001 From: Ian Sanders Date: Thu, 7 Dec 2023 17:17:24 +0000 Subject: [PATCH] Add deleted test back --- test/test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test.js b/test/test.js index 59570bb..17b33cd 100644 --- a/test/test.js +++ b/test/test.js @@ -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'}],