yoastseo-dep
Version:
Yoast clientside page analysis
11 lines (8 loc) • 465 B
JavaScript
import textLength from "../../../../../src/languageProcessing/languages/ja/customResearches/textLength";
import Paper from "../../../../../src/values/Paper";
describe( "counts characters in a string", function() {
const paper = new Paper( "こんにちは。" );
it( "returns the number of characters for the text of a given paper", function() {
expect( textLength( paper ) ).toEqual( { text: "こんにちは。", count: 6, unit: "character" } );
} );
} );