yoastseo-dep
Version:
Yoast clientside page analysis
43 lines (36 loc) • 1.26 kB
JavaScript
import Paragraph from "../../../../../src/parsedPaper/structure/tree/nodes/Paragraph";
describe( "Paragraph tree node", () => {
const sourceCodeLocation = {
startTag: {
startOffset: 0,
endOffset: 4,
},
endTag: {
startOffset: 12,
endOffset: 17,
},
startOffset: 0,
endOffset: 17,
};
describe( "constructor", () => {
it( "creates a new Paragraph tree node", () => {
const paragraph = new Paragraph( sourceCodeLocation );
expect( paragraph.type ).toEqual( "Paragraph" );
expect( paragraph.sourceCodeLocation ).toEqual( sourceCodeLocation );
expect( paragraph.textContainer ).not.toEqual( null );
expect( paragraph.textContainer.text ).toEqual( "" );
} );
} );
describe( "get and set text", () => {
it( "sets text to a Paragraph tree node and get text from it", () => {
const paragraph = new Paragraph( sourceCodeLocation );
// Use a setter to add text to the Paragraph
paragraph.text = "Some text!";
expect( paragraph.type ).toEqual( "Paragraph" );
expect( paragraph.textContainer ).not.toEqual( null );
expect( paragraph.textContainer.text ).toEqual( "Some text!" );
// Use a getter to get text from the Paragraph
expect( paragraph.text ).toEqual( "Some text!" );
} );
} );
} );