{
  "stats": {
    "suites": 1,
    "tests": 10,
    "passes": 5,
    "pending": 0,
    "failures": 5,
    "start": "2022-07-20T10:09:19.881Z",
    "end": "2022-07-20T10:10:37.737Z",
    "duration": 77856,
    "testsRegistered": 10,
    "passPercent": 50,
    "pendingPercent": 0,
    "other": 0,
    "hasOther": false,
    "skipped": 0,
    "hasSkipped": false
  },
  "results": [
    {
      "uuid": "df29b00b-682e-4c56-b720-8efb54b1dab4",
      "title": "",
      "fullFile": "",
      "file": "",
      "beforeHooks": [],
      "afterHooks": [],
      "tests": [],
      "suites": [
        {
          "uuid": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
          "title": "Test",
          "fullFile": "",
          "file": "",
          "beforeHooks": [],
          "afterHooks": [],
          "tests": [
            {
              "title": "Seo basic h1 check",
              "fullTitle": "Test Seo basic h1 check",
              "timedOut": null,
              "duration": 11071,
              "state": "failed",
              "speed": null,
              "pass": false,
              "fail": true,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy); //read the url from the env vars\n\nvar baseurl = _websiteMonitoring[\"default\"].readEnvVariable('url');\n_seoBasic[\"default\"].checkH1(cy, baseurl);",
              "err": {
                "message": "AssertionError: Timed out retrying after 4000ms: Too many elements found. Found '3', expected '1'.",
                "estack": "AssertionError: Timed out retrying after 4000ms: Too many elements found. Found '3', expected '1'.\n    at Object.checkH1 (https://www.kellereikaltern.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:128:37)\n    at Context.eval (https://www.kellereikaltern.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:24:26)",
                "diff": "- 3\n+ 1\n"
              },
              "uuid": "a00f9fd7-865e-47e4-9736-1eaa50643c35",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Seo basic h2 check",
              "fullTitle": "Test Seo basic h2 check",
              "timedOut": null,
              "duration": 6578,
              "state": "failed",
              "speed": null,
              "pass": false,
              "fail": true,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy);\nvar baseurl = _websiteMonitoring[\"default\"].readEnvVariable('url');\n_seoBasic[\"default\"].checkH2(cy, baseurl);",
              "err": {
                "message": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `h2`, but never found it.",
                "estack": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `h2`, but never found it.\n    at Object.checkH2 (https://www.kellereikaltern.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:151:8)\n    at Context.eval (https://www.kellereikaltern.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:33:26)",
                "diff": null
              },
              "uuid": "c7575763-219a-4f93-a57d-b9e534be0c1b",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Head description not empty and max 160 char",
              "fullTitle": "Test Head description not empty and max 160 char",
              "timedOut": null,
              "duration": 2026,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy); //check whether the meta tag \"description\" is present, populated and longer than 160 chars\n\ncy.get('head meta[name=description]').invoke('attr', 'content').should('not.be.empty').and('have.length.of.at.most', 160);",
              "err": {},
              "uuid": "ca198561-3931-4246-bb65-38983d7058c9",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Head title not empty and max 55 char",
              "fullTitle": "Test Head title not empty and max 55 char",
              "timedOut": null,
              "duration": 2369,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy); //check whether the meta tag \"title\" is present, populated and longer than 55 chars\n\ncy.get('head > meta[property=\"og:title\"]').invoke('attr', 'content').should('not.be.empty').and('have.length.of.at.most', 55);",
              "err": {},
              "uuid": "13eafb49-0a83-4703-9e68-c969494b15c5",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Loading time is too high",
              "fullTitle": "Test Loading time is too high",
              "timedOut": null,
              "duration": 254,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "var loadTime = window.performance.timing.domComplete - window.performance.timing.requestStart;\ncy.log(\"Loadingtime: \" + loadTime + \"ms\");\nif (loadTime > 2000) {\n  expect(false).to.be[\"true\"];\n} else {\n  expect(true).to.be[\"true\"];\n}",
              "err": {},
              "uuid": "61a37008-19a4-4835-9eee-44901c85bfc7",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Check paragraph length",
              "fullTitle": "Test Check paragraph length",
              "timedOut": null,
              "duration": 1858,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy);\nvar baseurl = _websiteMonitoring[\"default\"].readEnvVariable('url');\n_seoBasic[\"default\"].checkParagraphLength(cy, baseurl);",
              "err": {},
              "uuid": "1c5238ab-3c02-4bc3-baee-0b177587f486",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "CHECK url word in page",
              "fullTitle": "Test CHECK url word in page",
              "timedOut": null,
              "duration": 32516,
              "state": "passed",
              "speed": "slow",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy);\nvar baseurl = _websiteMonitoring[\"default\"].readEnvVariable('url');\n_seoBasic[\"default\"].urlWordInPage(cy, baseurl);",
              "err": {},
              "uuid": "db0ad554-b995-4b1e-90c8-de42bbe2cde1",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "CHECK link LENGTH",
              "fullTitle": "Test CHECK link LENGTH",
              "timedOut": null,
              "duration": 3276,
              "state": "failed",
              "speed": null,
              "pass": false,
              "fail": true,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy);\nvar baseurl = _websiteMonitoring[\"default\"].readEnvVariable('url');\n_seoBasic[\"default\"].checkLinkLength(cy, baseurl);",
              "err": {
                "message": "TypeError: Cannot read properties of undefined (reading 'style')",
                "estack": "TypeError: Cannot read properties of undefined (reading 'style')\n    at Plugin.updateTransform (https://www.kellereikaltern.com/web/cache/1657114318_fcbb11703fb1969956ac98fa92f1eefc.js:302:634)\n    at Plugin.setTranslation (https://www.kellereikaltern.com/web/cache/1657114318_fcbb11703fb1969956ac98fa92f1eefc.js:300:1666)\n    at Plugin.translate (https://www.kellereikaltern.com/web/cache/1657114318_fcbb11703fb1969956ac98fa92f1eefc.js:300:1823)\n    at Plugin.onResize (https://www.kellereikaltern.com/web/cache/1657114318_fcbb11703fb1969956ac98fa92f1eefc.js:299:1320)\n    at EventEmitter.trigger (https://www.kellereikaltern.com/web/cache/1657114318_fcbb11703fb1969956ac98fa92f1eefc.js:167:153)\n    at EventEmitter._checkResize (https://www.kellereikaltern.com/web/cache/1657114318_fcbb11703fb1969956ac98fa92f1eefc.js:196:361)\n    at i (https://www.kellereikaltern.com/en/:1:1518)\n    at https://www.kellereikaltern.com/en/:1:2288\n    at Array.forEach (<anonymous>)\n    at $Cypress.pause (https://www.kellereikaltern.com/en/:1:2205)",
                "diff": null
              },
              "uuid": "dc234850-85b9-4ca3-b1c2-f6944e7656af",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Has Strucured DATA",
              "fullTitle": "Test Has Strucured DATA",
              "timedOut": null,
              "duration": 8185,
              "state": "failed",
              "speed": null,
              "pass": false,
              "fail": true,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy);\n_seoBasic[\"default\"].hasStructuredData(cy);",
              "err": {
                "message": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `head > script[type=\"application/ld+json\"]`, but never found it.",
                "estack": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `head > script[type=\"application/ld+json\"]`, but never found it.\n    at Object.hasStructuredData (https://www.kellereikaltern.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:335:57)\n    at Context.eval (https://www.kellereikaltern.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:93:26)",
                "diff": null
              },
              "uuid": "50f77108-374c-40c3-8ecc-15bddffe59dc",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Attribute alt used FOR images",
              "fullTitle": "Test Attribute alt used FOR images",
              "timedOut": null,
              "duration": 7230,
              "state": "failed",
              "speed": null,
              "pass": false,
              "fail": true,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy);\n_seoBasic[\"default\"].useAltAttribute(cy);",
              "err": {
                "message": "AssertionError: Timed out retrying after 4000ms: expected '<img>' to have attribute 'alt'",
                "estack": "AssertionError: Timed out retrying after 4000ms: expected '<img>' to have attribute 'alt'\n    at Context.eval (https://www.kellereikaltern.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:341:22)",
                "diff": null
              },
              "uuid": "2a0cca06-2f76-4ad5-90e4-88a6e379c0ad",
              "parentUUID": "f98d7d11-b66e-4a76-8cfc-f020e20317b5",
              "isHook": false,
              "skipped": false
            }
          ],
          "suites": [],
          "passes": [
            "ca198561-3931-4246-bb65-38983d7058c9",
            "13eafb49-0a83-4703-9e68-c969494b15c5",
            "61a37008-19a4-4835-9eee-44901c85bfc7",
            "1c5238ab-3c02-4bc3-baee-0b177587f486",
            "db0ad554-b995-4b1e-90c8-de42bbe2cde1"
          ],
          "failures": [
            "a00f9fd7-865e-47e4-9736-1eaa50643c35",
            "c7575763-219a-4f93-a57d-b9e534be0c1b",
            "dc234850-85b9-4ca3-b1c2-f6944e7656af",
            "50f77108-374c-40c3-8ecc-15bddffe59dc",
            "2a0cca06-2f76-4ad5-90e4-88a6e379c0ad"
          ],
          "pending": [],
          "skipped": [],
          "duration": 75363,
          "root": false,
          "rootEmpty": false,
          "_timeout": 2000
        }
      ],
      "passes": [],
      "failures": [],
      "pending": [],
      "skipped": [],
      "duration": 0,
      "root": true,
      "rootEmpty": true,
      "_timeout": 2000
    }
  ],
  "meta": {
    "mocha": {
      "version": "7.0.1"
    },
    "mochawesome": {
      "options": {
        "quiet": false,
        "reportFilename": "mochawesome",
        "saveHtml": true,
        "saveJson": true,
        "consoleReporter": "spec",
        "useInlineDiffs": false,
        "code": true
      },
      "version": "7.1.0"
    },
    "marge": {
      "options": {
        "reportDir": "cypress/results/10/116/reports"
      },
      "version": "6.1.0"
    }
  }
}