diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-18 11:24:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-18 11:24:43 -0500 |
commit | c728448a4d05268d4febb9950a39d517a75ea052 (patch) | |
tree | fc6ef90de9732cf0b0ac35e1d76a1515c8294b4d /test | |
parent | bf349050123eaaa7b58f82b7e3a84e2857fdea8c (diff) |
Maximum clipboard search length (#1118)
* Add maximumClipboardSearchLength an option
* Add setting
* Add limits
* Update tests
Diffstat (limited to 'test')
-rw-r--r-- | test/test-options-util.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test-options-util.js b/test/test-options-util.js index cfb1c87d..ca14e8d4 100644 --- a/test/test-options-util.js +++ b/test/test-options-util.js @@ -292,7 +292,8 @@ function createProfileOptionsUpdatedTestData1() { showIframePopupsInRootFrame: false, useSecurePopupFrameUrl: true, usePopupShadowDom: true, - usePopupWindow: false + usePopupWindow: false, + maximumClipboardSearchLength: 1000 }, audio: { enabled: true, @@ -498,7 +499,7 @@ function createOptionsUpdatedTestData1() { } ], profileCurrent: 0, - version: 6, + version: 7, global: { database: { prefixWildcardsSupported: false |