UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

52 lines (40 loc) 2.41 kB
import Researcher from "../../../../src/languageProcessing/languages/nb/Researcher.js"; import Paper from "../../../../src/values/Paper.js"; import getMorphologyData from "../../../specHelpers/getMorphologyData"; import functionWords from "../../../../src/languageProcessing/languages/nb/config/functionWords"; import firstWordExceptions from "../../../../src/languageProcessing/languages/nb/config/firstWordExceptions"; import transitionWords from "../../../../src/languageProcessing/languages/nb/config/transitionWords"; import twoPartTransitionWords from "../../../../src/languageProcessing/languages/nb/config/twoPartTransitionWords"; const morphologyDataNB = getMorphologyData( "nb" ); describe( "a test for Norwegian Researcher", function() { const researcher = new Researcher( new Paper( "This is another paper!" ) ); it( "checks if the Norwegian Researcher still inherit the Abstract Researcher", function() { expect( researcher.hasResearch( "getParagraphLength" ) ).toEqual( true ); } ); it( "returns false if the default research is deleted in Norwegian Researcher", function() { expect( researcher.getResearch( "getFleschReadingScore" ) ).toBe( false ); expect( researcher.getResearch( "wordComplexity" ) ).toBe( false ); } ); it( "returns false if the Norwegian Researcher doesn't have a certain config", function() { expect( researcher.getConfig( "syllables" ) ).toBe( false ); } ); it( "returns the Norwegian function words", function() { expect( researcher.getConfig( "functionWords" ) ).toEqual( functionWords ); } ); it( "returns the Norwegian first word exceptions", function() { expect( researcher.getConfig( "firstWordExceptions" ) ).toEqual( firstWordExceptions ); } ); it( "returns the Norwegian transition words", function() { expect( researcher.getConfig( "transitionWords" ) ).toEqual( transitionWords ); } ); it( "returns the Norwegian two part transition word", function() { expect( researcher.getConfig( "twoPartTransitionWords" ) ).toEqual( twoPartTransitionWords ); } ); it( "returns the Norwegian locale", function() { expect( researcher.getConfig( "language" ) ).toEqual( "nb" ); } ); it( "stems the Norwegian word using the Norwegian stemmer", function() { researcher.addResearchData( "morphology", morphologyDataNB ); expect( researcher.getHelper( "getStemmer" )( researcher )( "katter" ) ).toEqual( "katt" ); } ); } );