UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

11 lines (9 loc) 460 B
import Text from "../../../src/parse/structure/Text"; describe( "A test for the Text object", function() { it( "should correctly construct a Text object", function() { expect( new Text( { value: "This is a text. It consists of 2 sentences", sourceCodeLocation: { startOffset: 0, endOffset: 40 } } ) ).toEqual( { name: "#text", value: "This is a text. It consists of 2 sentences", sourceCodeRange: { startOffset: 0, endOffset: 40 }, } ); } ); } );