yoastseo-dep
Version:
Yoast clientside page analysis
16 lines (13 loc) • 489 B
JavaScript
import calculateFleschReadingScore from "../../../../../src/languageProcessing/languages/nl/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 Dutch", function() {
it( "returns a score", function() {
expect( calculateFleschReadingScore( testStatistics ) ).toBe( 48.2 );
} );
} );