UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

12 lines (10 loc) 754 B
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 ); } ); } );