diff options
author | marv <rotrobmin@gmail.com> | 2024-07-03 03:00:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 10:00:07 +0000 |
commit | 066ca66fc4033da39d0aecd73b0f5c200cb3f3ed (patch) | |
tree | 64d00048c4dd0b422141a72b9c6b1310f59fc496 /test | |
parent | c1f0343feeb8b8a8feaa942022150f971e118659 (diff) |
Add Option for Scanning Alt Text (#1169)
* Add Option for Scanning Alt Text
* Don't scan alt text if option disabled
* Add scanAltText to Options Schema
* Add `scanning.scanAltText` Update Function
* Bump Options Test Version
* Remove Param Annotation
Diffstat (limited to 'test')
-rw-r--r-- | test/options-util.test.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/options-util.test.js b/test/options-util.test.js index 253b9650..60d44470 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -95,6 +95,7 @@ function createProfileOptionsTestData1() { enableOnSearchPage: true, enableSearchTags: false, layoutAwareScan: false, + scanAltText: true, }, translation: { convertHalfWidthCharacters: 'false', @@ -325,6 +326,7 @@ function createProfileOptionsUpdatedTestData1() { hidePopupOnCursorExit: false, hidePopupOnCursorExitDelay: 0, normalizeCssZoom: true, + scanAltText: true, preventMiddleMouse: { onWebPages: false, onPopupPages: false, @@ -606,7 +608,7 @@ function createOptionsUpdatedTestData1() { }, ], profileCurrent: 0, - version: 41, + version: 42, global: { database: { prefixWildcardsSupported: false, |