diff options
Diffstat (limited to 'test/database.test.js')
-rw-r--r-- | test/database.test.js | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/test/database.test.js b/test/database.test.js index c99cf57c..7c3d5606 100644 --- a/test/database.test.js +++ b/test/database.test.js @@ -165,7 +165,7 @@ async function testDatabase1() { media: {total: 6}, tagMeta: {total: 15}, termMeta: {total: 38, freq: 31, pitch: 7}, - terms: {total: 21} + terms: {total: 22} } }; @@ -192,8 +192,8 @@ async function testDatabase1() { true ); expect(counts).toStrictEqual({ - counts: [{kanji: 2, kanjiMeta: 6, terms: 21, termMeta: 38, tagMeta: 15, media: 6}], - total: {kanji: 2, kanjiMeta: 6, terms: 21, termMeta: 38, tagMeta: 15, media: 6} + counts: [{kanji: 2, kanjiMeta: 6, terms: 22, termMeta: 38, tagMeta: 15, media: 6}], + total: {kanji: 2, kanjiMeta: 6, terms: 22, termMeta: 38, tagMeta: 15, media: 6} }); // Test find* functions @@ -559,6 +559,22 @@ async function testFindTermsBySequenceBulk1(database, mainDictionary) { { inputs: [ { + sequenceList: [1099490] + } + ], + expectedResults: { + total: 1, + terms: [ + ['発条', 1] + ], + readings: [ + ['ばね', 1] + ] + } + }, + { + inputs: [ + { sequenceList: [-1] } ], |