yoastseo-dep
Version:
Yoast clientside page analysis
9 lines (7 loc) • 327 B
JavaScript
import Sentence from "../../../src/parse/structure/Sentence";
describe( "A test for the Sentence object", function() {
it( "should correctly construct a Sentence object", function() {
expect( new Sentence( "This is a sentence." ) ).toEqual( {
text: "This is a sentence.", tokens: [], sourceCodeRange: {} } );
} );
} );