{
  "stats": {
    "suites": 1,
    "tests": 10,
    "passes": 6,
    "pending": 0,
    "failures": 4,
    "start": "2022-12-15T07:44:24.249Z",
    "end": "2022-12-15T07:45:42.244Z",
    "duration": 77995,
    "testsRegistered": 10,
    "passPercent": 60,
    "pendingPercent": 0,
    "other": 0,
    "hasOther": false,
    "skipped": 0,
    "hasSkipped": false
  },
  "results": [
    {
      "uuid": "46ad1dd6-680e-47bd-99c6-9c8177a18c2e",
      "title": "",
      "fullFile": "",
      "file": "",
      "beforeHooks": [],
      "afterHooks": [],
      "tests": [],
      "suites": [
        {
          "uuid": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
          "title": "Test",
          "fullFile": "",
          "file": "",
          "beforeHooks": [],
          "afterHooks": [],
          "tests": [
            {
              "title": "Seo basic h1 check",
              "fullTitle": "Test Seo basic h1 check",
              "timedOut": null,
              "duration": 10438,
              "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\"].checkH1(cy, baseurl);",
              "err": {
                "message": "AssertionError: Timed out retrying after 4000ms: expected 7 to be at most 1",
                "estack": "AssertionError: Timed out retrying after 4000ms: expected 7 to be at most 1\n    at Object.checkH1 (https://www.wildcountry.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:124:62)\n    at Context.eval (https://www.wildcountry.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:23:26)",
                "diff": "- 7\n+ 1\n"
              },
              "uuid": "04974402-2a67-4068-b214-a6101b3e2e29",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Seo basic h2 check",
              "fullTitle": "Test Seo basic h2 check",
              "timedOut": null,
              "duration": 10865,
              "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:not([style=\"display: none\"]`, but never found it.",
                "estack": "AssertionError: Timed out retrying after 4000ms: Expected to find element: `h2:not([style=\"display: none\"]`, but never found it.\n    at eval (https://www.wildcountry.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:212:14)\nat Array.forEach (<anonymous>)\n    at Context.eval (https://www.wildcountry.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:209:26)",
                "diff": null
              },
              "uuid": "86d553d2-c785-47c7-82a1-79c83c8e4854",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "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": 2136,
              "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": "baebbc13-2ddd-4d5f-8c8d-96ec723f26d5",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "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": 2954,
              "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": "30729682-50c9-4fec-8344-4063aab251ac",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Loading time is too high",
              "fullTitle": "Test Loading time is too high",
              "timedOut": null,
              "duration": 874,
              "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": "eaa125c6-1c11-4300-bb76-456e231ea171",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Check paragraph length",
              "fullTitle": "Test Check paragraph length",
              "timedOut": null,
              "duration": 1913,
              "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": "c1e6fa20-65a4-44ff-9454-5ad43869188e",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "CHECK url word in page",
              "fullTitle": "Test CHECK url word in page",
              "timedOut": null,
              "duration": 27408,
              "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": "fe3f5a90-0ff3-46b1-b637-7a952d99d80b",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "CHECK link LENGTH",
              "fullTitle": "Test CHECK link LENGTH",
              "timedOut": null,
              "duration": 4860,
              "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": "AssertionError: expected 'https://login2.oberalp.com/identity/resetpassword?clientid=NiOESJwzICh6e73TlYL7hVky73rBYUYdoRFR' to have a length at most 75 but got 95",
                "estack": "AssertionError: expected 'https://login2.oberalp.com/identity/resetpassword?clientid=NiOESJwzICh6e73TlYL7hVky73rBYUYdoRFR' to have a length at most 75 but got 95\n    at Context.eval (https://www.wildcountry.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:329:52)",
                "diff": "- 95\n+ 75\n"
              },
              "uuid": "381602c6-8c16-4e70-b5f6-e674128f1e6e",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Has Strucured DATA",
              "fullTitle": "Test Has Strucured DATA",
              "timedOut": null,
              "duration": 5232,
              "state": "passed",
              "speed": "medium",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "_websiteMonitoring[\"default\"].visitDomain(cy);\n_websiteMonitoring[\"default\"].setViewport(cy);\n_seoBasic[\"default\"].hasStructuredData(cy);",
              "err": {},
              "uuid": "7d9f003d-8faf-4b2a-9663-36fba755184a",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "Attribute alt used FOR images",
              "fullTitle": "Test Attribute alt used FOR images",
              "timedOut": null,
              "duration": 7462,
              "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.banner--image-src>' to have attribute 'alt'",
                "estack": "AssertionError: Timed out retrying after 4000ms: expected '<img.banner--image-src>' to have attribute 'alt'\n    at Context.eval (https://www.wildcountry.com/__cypress/tests?p=cypress/integration/generic/seo-basic.js:440:22)",
                "diff": null
              },
              "uuid": "03152288-9447-49d5-b885-803986365ae9",
              "parentUUID": "51e2dc5f-6954-4b9f-b69e-ce9ba6995699",
              "isHook": false,
              "skipped": false
            }
          ],
          "suites": [],
          "passes": [
            "baebbc13-2ddd-4d5f-8c8d-96ec723f26d5",
            "30729682-50c9-4fec-8344-4063aab251ac",
            "eaa125c6-1c11-4300-bb76-456e231ea171",
            "c1e6fa20-65a4-44ff-9454-5ad43869188e",
            "fe3f5a90-0ff3-46b1-b637-7a952d99d80b",
            "7d9f003d-8faf-4b2a-9663-36fba755184a"
          ],
          "failures": [
            "04974402-2a67-4068-b214-a6101b3e2e29",
            "86d553d2-c785-47c7-82a1-79c83c8e4854",
            "381602c6-8c16-4e70-b5f6-e674128f1e6e",
            "03152288-9447-49d5-b885-803986365ae9"
          ],
          "pending": [],
          "skipped": [],
          "duration": 74142,
          "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/6/116/reports"
      },
      "version": "6.1.0"
    }
  }
}