yoastseo-dep
Version:
Yoast clientside page analysis
12 lines (10 loc) • 754 B
JavaScript
import wordCountFunction from "../../../../src/languageProcessing/helpers/word/countWords.js";
describe( "counts words in a string", function() {
it( "returns the number of words", function() {
expect( wordCountFunction( "this is a string" ) ).toBe( 4 );
expect( wordCountFunction( "this is a string, a very nice string." ) ).toBe( 8 );
expect( wordCountFunction( " انتشار کتابی درباره خفنترین آزمایش های تاریخ علم، توجه رسانهها " +
"را به خود جلب کردیلها در اسید و دیگر آزمایشهای خفن عل این عنوان کتابی است که چند" ) ).toBe( 28 );
expect( wordCountFunction( "<p class='class'>word</p>" ) ).toBe( 1 );
} );
} );