yoastseo-dep
Version:
Yoast clientside page analysis
13 lines (10 loc) • 427 B
JavaScript
import calculateScore from "../../../../../src/languageProcessing/languages/it/helpers/calculateFleschReadingScore";
const statistics = {
averageWordsPerSentence: 19,
syllablesPer100Words: 250,
};
describe( "test for calculating the Italian Flesch reading ease score", function() {
it( "returns the Flesch reading ease score for Italian", function() {
expect( calculateScore( statistics ) ).toEqual( 42.3 );
} );
} );