yoastseo-dep
Version:
Yoast clientside page analysis
12 lines (9 loc) • 496 B
JavaScript
import pageTitleLength from "../../../src/languageProcessing/researches/pageTitleWidth.js";
import Paper from "../../../src/values/Paper.js";
describe( "the page title width research", function() {
it( "should return the pixels in the title", function() {
expect( pageTitleLength( new Paper( "", { title: "title", titleWidth: 10 } ) ) ).toBe( 10 );
expect( pageTitleLength( new Paper( "", { title: "" } ) ) ).toBe( 0 );
expect( pageTitleLength( new Paper( "" ) ) ).toBe( 0 );
} );
} );