yoastseo-dep
Version:
Yoast clientside page analysis
10 lines (8 loc) • 391 B
JavaScript
import Heading from "../../../src/parse/structure/Heading";
describe( "A test for the Heading object", () => {
it( "should correctly create a Heading object", function() {
for ( let headingLevel = 1; headingLevel < 7; headingLevel++ ) {
expect( new Heading( headingLevel ) ).toEqual( { name: `h${headingLevel}`, attributes: {}, childNodes: [], level: headingLevel } );
}
} );
} );