UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

8 lines (6 loc) 274 B
import baseStemmer from "../../../../src/languageProcessing/helpers/morphology/baseStemmer"; describe( "Test for the base stemmer where it returns the input word", () => { it( "returns the input word", () => { expect( baseStemmer( "cats" ) ).toBe( "cats" ); } ); } );