diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-09 21:25:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-09 21:25:04 -0500 |
commit | da1e1e5c5b4dc20cc6aa46b51c55a496d094ed5c (patch) | |
tree | 63d60b93b85b063ff8c42d113083d3b732bb19f5 /test/test-options-util.js | |
parent | d698911bc9bf7cb431bce939412131a90f24ee45 (diff) |
Sentence parsing options (#1214)
* Rename options.anki.sentenceExt to options.sentenceParsing.scanExtent
* Create sentence parsing icon
* Create new sentence parsing section
Diffstat (limited to 'test/test-options-util.js')
-rw-r--r-- | test/test-options-util.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test-options-util.js b/test/test-options-util.js index ca5f5065..8b7254c6 100644 --- a/test/test-options-util.js +++ b/test/test-options-util.js @@ -412,13 +412,15 @@ function createProfileOptionsUpdatedTestData1() { enable: false, server: 'http://127.0.0.1:8765', tags: ['yomichan'], - sentenceExt: 200, screenshot: {format: 'png', quality: 92}, terms: {deck: '', model: '', fields: {}}, kanji: {deck: '', model: '', fields: {}}, duplicateScope: 'collection', checkForDuplicates: true, fieldTemplates: null + }, + sentenceParsing: { + scanExtent: 200 } }; } |