UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

16 lines (13 loc) 491 B
import calculateFleschReadingScore from "../../../../../src/languageProcessing/languages/ru/helpers/calculateFleschReadingScore.js"; const testStatistics = { numberOfSentences: 10, numberOfWords: 50, numberOfSyllables: 100, averageWordsPerSentence: 5, syllablesPer100Words: 200, }; describe( "a test to calculate the Flesch reading score in Russian", function() { it( "returns a score", function() { expect( calculateFleschReadingScore( testStatistics ) ).toBe( 80.1 ); } ); } );