UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

148 lines (140 loc) 5.24 kB
import Paper from "../../../../../../src/values/Paper.js"; import content from "./englishPaper3.html"; const name = "englishPaper3"; const paper = new Paper( content, { keyword: "Young adult fiction", synonyms: "YA", description: "Young adult fiction (YA) is a category of fiction written for readers from 12 to 18 years of age. " + "While the genre is targeted to adolescents, approximately half of YA readers are adults.", title: "Young adult fiction", titleWidth: 450, locale: "en_EN", permalink: "https://en.wikipedia.org/wiki/Young_adult_fiction", slug: "Young_adult_fiction", } ); const expectedResults = { introductionKeyword: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify8' target='_blank'>Keyphrase in introduction</a>: Well done!", }, keyphraseLength: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify10' target='_blank'>Keyphrase length</a>: Good job!", }, keywordDensity: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify12' target='_blank'>Keyphrase density</a>: The keyphrase was found 9 times. This is great!", }, metaDescriptionKeyword: { isApplicable: true, score: 3, resultText: "<a href='https://yoa.st/shopify14' target='_blank'>Keyphrase in meta description</a>: The meta description " + "contains the keyphrase " + "3 times, which is over the advised maximum of 2 times. <a href='https://yoa.st/shopify15' target='_blank'>" + "Limit that</a>!", }, metaDescriptionLength: { isApplicable: true, score: 6, resultText: "<a href='https://yoa.st/shopify46' target='_blank'>Meta description length</a>: The meta description is over 156 characters." + " To ensure the entire description will be visible, <a href='https://yoa.st/shopify47' target='_blank'>you should reduce the length</a>!", }, textLength: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify58' target='_blank'>Text length</a>: The text contains 437 words. Good job!", }, keyphraseInSEOTitle: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify24' target='_blank'>Keyphrase in SEO title</a>: The exact match of the focus " + "keyphrase appears at the beginning of the SEO title. Good job!", }, titleWidth: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify52' target='_blank'>SEO title width</a>: Good job!", }, slugKeyword: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify26' target='_blank'>Keyphrase in slug</a>: Great work!", }, functionWordsInKeyphrase: { isApplicable: true, score: 0, resultText: "", }, singleH1: { isApplicable: true, score: 0, resultText: "", }, keyphraseDistribution: { isApplicable: true, score: 1, resultText: "<a href='https://yoa.st/shopify30' target='_blank'>Keyphrase distribution</a>: Very uneven. Large parts of " + "your text do not contain the keyphrase or its synonyms. <a href='https://yoa.st/shopify31' target='_blank'>" + "Distribute them more evenly</a>.", }, subheadingsTooLong: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify68' target='_blank'>Subheading distribution</a>: Great job!", }, textParagraphTooLong: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify66' target='_blank'>Paragraph length</a>: None of the paragraphs are too long. Great job!", }, textSentenceLength: { isApplicable: true, score: 3, resultText: "<a href='https://yoa.st/shopify48' target='_blank'>Sentence length</a>: 32% of the sentences contain more than 20 words, " + "which is more than the recommended maximum of 25%. <a href='https://yoa.st/shopify49' target='_blank'>Try to shorten the sentences</a>.", }, textTransitionWords: { isApplicable: true, score: 6, resultText: "<a href='https://yoa.st/shopify44' target='_blank'>Transition words</a>: Only 28.6% of the sentences " + "contain transition words, which is not enough. <a href='https://yoa.st/shopify45' target='_blank'>Use more of them</a>.", }, passiveVoice: { isApplicable: true, score: 3, resultText: "<a href='https://yoa.st/shopify42' target='_blank'>Passive voice</a>: 25% of the sentences contain passive voice, " + "which is more than the recommended maximum of 10%. <a href='https://yoa.st/shopify43' target='_blank'>" + "Try to use their active counterparts</a>.", }, textPresence: { isApplicable: true, score: 0, resultText: "", }, sentenceBeginnings: { isApplicable: true, score: 9, resultText: "<a href='https://yoa.st/shopify5' target='_blank'>Consecutive sentences</a>: There is enough variety in your sentences. " + "That's great!", }, wordComplexity: { isApplicable: true, score: 6, resultText: "<a href='https://yoa.st/shopify77' target='_blank'>Word complexity</a>: 12.36% of the words in your text are " + "considered complex. <a href='https://yoa.st/shopify78' target='_blank'>" + "Try to use shorter and more familiar words to improve readability</a>.", }, }; export { name, paper, expectedResults, }; export default { name: name, paper: paper, expectedResults: expectedResults, };