diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-06-14 12:48:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 16:48:09 +0000 |
commit | e4331ab90ee605e073139e20772d5ec69110ec1e (patch) | |
tree | 9cba972a9853d4b8d082873d2511285bc743118b /test | |
parent | 25bbe3f86a16d6ebece160af435e899f0ba45e44 (diff) |
Add web option to profile switching keybinds (#933)
* Add web option to profile switching keybinds
* Fix spacing
* Refactor
* Fix comment on update
* Make linter happy
---------
Signed-off-by: Kuuuube <61125188+Kuuuube@users.noreply.github.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/options-util.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/options-util.test.js b/test/options-util.test.js index 54bae173..d1fc3515 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -493,8 +493,8 @@ function createProfileOptionsUpdatedTestData1() { {action: 'playAudio', argument: '', key: 'KeyP', modifiers: ['alt'], scopes: ['popup', 'search'], enabled: true}, {action: 'viewNotes', argument: '', key: 'KeyV', modifiers: ['alt'], scopes: ['popup', 'search'], enabled: true}, {action: 'copyHostSelection', argument: '', key: 'KeyC', modifiers: ['ctrl'], scopes: ['popup'], enabled: true}, - {action: 'profilePrevious', argument: '', key: 'Minus', modifiers: ['alt'], scopes: ['popup', 'search'], enabled: true}, - {action: 'profileNext', argument: '', key: 'Equal', modifiers: ['alt'], scopes: ['popup', 'search'], enabled: true}, + {action: 'profilePrevious', argument: '', key: 'Minus', modifiers: ['alt'], scopes: ['popup', 'search', 'web'], enabled: true}, + {action: 'profileNext', argument: '', key: 'Equal', modifiers: ['alt'], scopes: ['popup', 'search', 'web'], enabled: true}, ], /* eslint-enable @stylistic/no-multi-spaces */ }, @@ -606,7 +606,7 @@ function createOptionsUpdatedTestData1() { }, ], profileCurrent: 0, - version: 39, + version: 40, global: { database: { prefixWildcardsSupported: false, |