{ "stats": { "suites": 1, "tests": 14, "passes": 1, "pending": 0, "failures": 13, "start": "2025-11-06T05:26:31.985Z", "end": "2025-11-06T05:39:34.172Z", "duration": 782187, "testsRegistered": 14, "passPercent": 7.142857142857142, "pendingPercent": 0, "other": 0, "hasOther": false, "skipped": 0, "hasSkipped": false }, "results": [ { "uuid": "231ad8f5-4220-441f-a8f2-0949bb49e8f0", "title": "", "fullFile": "cypress/component/MultiFlatmapVuer.cy.js", "file": "cypress/component/MultiFlatmapVuer.cy.js", "beforeHooks": [], "afterHooks": [], "tests": [], "suites": [ { "uuid": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "title": "MultiFlatmapVuer", "fullFile": "", "file": "", "beforeHooks": [], "afterHooks": [], "tests": [ { "title": "Workflow testing", "fullTitle": "MultiFlatmapVuer Workflow testing", "timedOut": null, "duration": 38439, "state": "passed", "speed": "slow", "pass": true, "fail": false, "pending": false, "context": null, "code": "cy.loadMultiFlatmap('@develProps')\n//Check if the minimap is visible\ncy.get('#maplibre-minimap > .maplibregl-canvas-container > .maplibregl-canvas').should('exist');\n// Check if flatmap emits ready event\ncy.get('@readySpy').should('have.been.calledWith').then(() => {\n // Create a pop up and ensure it shows\n const flatmapVuer = window.Cypress.multiFlatmapVuer.getCurrentFlatmap()\n const flatmapUUID = flatmapVuer.mapImp.uuid;\n flatmapVuer.showPopup(39, 'Test', { className: 'flatmapvuer-popover', positionAtLastClick: true })\n cy.get('.flatmapvuer-popover').should('exist').contains('Test').then(() => {\n // Close the pop up\n cy.get('.maplibregl-popup-close-button').click();\n cy.get('.flatmapvuer-popover').should('not.exist');\n // Check if alert exist in test flatmap\n cy.get('.maplibregl-canvas-container > .maplibregl-canvas')\n .first() // Get the first canvas (not minimap)\n .as('canvas')\n cy.get('.checkall-display-text').then(($label) => {\n expect($label, 'Alter filter should exist').to.contain('Alert')\n // Take a screenshot of no path flatmap\n cy.get('.pathway-location > .pathway-container:visible').contains('Alert').parent().siblings().children('.el-checkbox').click()\n cy.get('.pathway-location > .drawer-button:visible').click()\n // CLI\n cy.get('@canvas').screenshot('base/cypress/component/MultiFlatmapVuer.cy.js/mapalert')\n // UI\n cy.get('@canvas').screenshot('MultiFlatmapVuer.cy.js/base/cypress/component/MultiFlatmapVuer.cy.js/mapalert')\n // Compare previous screenshot with alter paths displayed flatmap\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.get('[label=\"alert\"] > .checkbox-container > .el-checkbox:visible').click()\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.get('@canvas').compareSnapshot('mapalert').then(comparisonResults => {\n expect(comparisonResults.percentage).to.greaterThan(0)\n })\n })\n // Check the metadata for path exploration is loading correctly\n }).then(() => {\n // Disable manual testing of click event\n // let fmEventCallback = flatmapVuer.eventCallback()\n // fmEventCallback(\n // \"click\",\n // {\n // id: \"ilxtr:neuron-type-keast-5\",\n // featureId: 26,\n // kind: \"sensory\",\n // label: \"neuron type kblad 5\",\n // models: \"ilxtr:neuron-type-keast-5\",\n // source: \"ilxtr:neuron-type-keast-5\",\n // taxons: '[\"NCBITaxon:10116\"]',\n // completeness: true,\n // type: \"feature\",\n // mapUUID: flatmapUUID,\n // },\n // []\n // );\n // Trigger click event from search function\n flatmapVuer.searchAndShowResult('ilxtr:neuron-type-keast-5', true, true)\n cy.get('.flatmapvuer-popover').should('exist').contains('Neuron type kblad 5').then(() => {\n // Set the tooltip to be visible (this is needed as the css hack does not work in testing for some reason)\n document.querySelector('#tooltip-container').style.display = 'block'\n cy.get('#tooltip-container').invoke('css', 'display').then((display) => {\n expect(display).to.equal('block')\n }).then(() => {\n // Check the pop up has the same information as when the test was created\n cy.get('.subtitle').should('exist').contains('Studied in Rattus norvegicus species')\n // Open the 'show more' section\n cy.get('#show-path-info').should('exist').click()\n cy.get('[origin-item-label=\"lamina VII of gray matter of spinal cord, L6 segment of lumbar spinal cord\"]').should('exist')\n cy.get('[component-item-label=\"pelvic splanchnic nerve\"]').should('exist')\n cy.get('[destination-item-label=\"pelvic ganglion\"]').should('exist')\n // Click on the dendrites button\n cy.get('#open-dendrites-button').should('exist').click()\n // Check that the resource selected event is emitted\n cy.get('@resourceSelectedSpy').should('have.been.calledWith')\n // create a single stub we will use\n cy.window().then(win => {\n cy.stub(win, 'open').as('Open')\n })\n // References\n cy.get('.resource-container').should('exist')\n cy.get('.citation-list').should('exist')\n cy.get('.citation-list').find('li').should('have.length', 7)\n const citationText = 'Androgen-sensitive preganglionic neurons innervate the male rat pelvic ganglion.'\n cy.get('.citation-list li.loading').should('not.exist').then(() => {\n cy.get('.citation-list li').should('exist').contains(citationText);\n })\n })\n // Close the pop up\n cy.get('.maplibregl-popup-close-button').should('exist')\n // Test the search\n }).then(() => {\n flatmapVuer.searchAndShowResult('body proper', true)\n cy.get('.maplibregl-popup').should('exist').contains('Body proper')\n })\n })\n})", "err": {}, "uuid": "787becef-1bcd-4c59-a365-0e3fc7a0970b", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "prepare reference images", "fullTitle": "MultiFlatmapVuer prepare reference images", "timedOut": null, "duration": 165264, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap('@referenceProps')\ncy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n cy.get('@referenceProps').then((props) => {\n const availableSpecies = []\n for (const [key, value] of Object.entries(props.availableSpecies)) {\n availableSpecies.push({ name: key, taxon: value.taxo })\n }\n availableSpecies.forEach((species) => {\n cy.then(() => {\n multiFlatmapVuer.setSpecies(\n species.name,\n multiFlatmapVuer.state ? multiFlatmapVuer.state.state : undefined,\n 1\n )\n cy.wait(1000)\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n expect(multiFlatmapVuer.activeSpecies).to.eq(species.name)\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n organTypes.forEach((type) => {\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n // CLI\n cy.get('@canvas').screenshot(`base/cypress/component/MultiFlatmapVuer.cy.js/${species.name}_${type}`)\n // UI\n cy.get('@canvas').screenshot(`MultiFlatmapVuer.cy.js/base/cypress/component/MultiFlatmapVuer.cy.js/${species.name}_${type}`)\n })\n })\n })\n })\n })\n})", "err": { "message": "AssertionError: Timed out retrying after 30000ms: Expected to find element: `.pathway-location > .pathway-container:visible`, but never found it.", "estack": "AssertionError: Timed out retrying after 30000ms: Expected to find element: `.pathway-location > .pathway-container:visible`, but never found it.\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:177:15)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)\n at wrapped (http://localhost:8082/__cypress/runner/cypress_runner.js:138024:19)\n at (http://localhost:8082/__cypress/runner/cypress_runner.js:143947:15)", "diff": null }, "uuid": "7c884ee1-f880-4356-807d-485d5151ec38", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @stagingProps-Human Female", "fullTitle": "MultiFlatmapVuer image rendering for @stagingProps-Human Female", "timedOut": null, "duration": 33876, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Human Female_color maps should be almost identical: expected 0.018007960272571562 to be below 0.0001", "estack": "AssertionError: Human Female_color maps should be almost identical: expected 0.018007960272571562 to be below 0.0001\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at Proxy. (http://localhost:8082/__cypress/runner/cypress_runner.js:139055:9)\n at Proxy.assertBelow (http://localhost:8082/__cypress/runner/cypress_runner.js:80734:12)\n at Proxy.methodWrapper (http://localhost:8082/__cypress/runner/cypress_runner.js:78188:25)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:114)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)", "diff": "- 0.018007960272571562\n+ 0.0001\n" }, "uuid": "53dbad47-05b9-4ac6-a05d-1ed17490d8b1", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @stagingProps-Human Male", "fullTitle": "MultiFlatmapVuer image rendering for @stagingProps-Human Male", "timedOut": null, "duration": 35122, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Human Male_color maps should be almost identical: expected 0.018030140598622357 to be below 0.0001", "estack": "AssertionError: Human Male_color maps should be almost identical: expected 0.018030140598622357 to be below 0.0001\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at Proxy. (http://localhost:8082/__cypress/runner/cypress_runner.js:139055:9)\n at Proxy.assertBelow (http://localhost:8082/__cypress/runner/cypress_runner.js:80734:12)\n at Proxy.methodWrapper (http://localhost:8082/__cypress/runner/cypress_runner.js:78188:25)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:114)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)", "diff": "- 0.018030140598622357\n+ 0.0001\n" }, "uuid": "86cb78f0-82b8-4636-b576-4496184da81c", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @stagingProps-Rat", "fullTitle": "MultiFlatmapVuer image rendering for @stagingProps-Rat", "timedOut": null, "duration": 41006, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Rat_color maps should be almost identical: expected 0.027153155151380726 to be below 0.0001", "estack": "AssertionError: Rat_color maps should be almost identical: expected 0.027153155151380726 to be below 0.0001\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at Proxy. (http://localhost:8082/__cypress/runner/cypress_runner.js:139055:9)\n at Proxy.assertBelow (http://localhost:8082/__cypress/runner/cypress_runner.js:80734:12)\n at Proxy.methodWrapper (http://localhost:8082/__cypress/runner/cypress_runner.js:78188:25)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:114)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)", "diff": "- 0.027153155151380726\n+ 0.0001\n" }, "uuid": "697aea8d-3521-43df-9a9f-ed7769fda57d", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @stagingProps-Mouse", "fullTitle": "MultiFlatmapVuer image rendering for @stagingProps-Mouse", "timedOut": null, "duration": 42434, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Mouse_color maps should be almost identical: expected undefined to be a number or a date", "estack": "AssertionError: Mouse_color maps should be almost identical: expected undefined to be a number or a date\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at (http://localhost:8082/__cypress/runner/cypress_runner.js:139065:7)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:14)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)\n at wrapped (http://localhost:8082/__cypress/runner/cypress_runner.js:138024:19)", "diff": null }, "uuid": "481c9d75-57a5-4780-8a44-d0bfbb4c536a", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @stagingProps-Pig", "fullTitle": "MultiFlatmapVuer image rendering for @stagingProps-Pig", "timedOut": null, "duration": 48625, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Pig_color maps should be almost identical: expected undefined to be a number or a date", "estack": "AssertionError: Pig_color maps should be almost identical: expected undefined to be a number or a date\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at (http://localhost:8082/__cypress/runner/cypress_runner.js:139065:7)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:14)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)\n at wrapped (http://localhost:8082/__cypress/runner/cypress_runner.js:138024:19)", "diff": null }, "uuid": "8fefa5c9-933f-40e5-a10d-d48749846367", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @stagingProps-Cat", "fullTitle": "MultiFlatmapVuer image rendering for @stagingProps-Cat", "timedOut": null, "duration": 45116, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Cat_color maps should be almost identical: expected undefined to be a number or a date", "estack": "AssertionError: Cat_color maps should be almost identical: expected undefined to be a number or a date\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at (http://localhost:8082/__cypress/runner/cypress_runner.js:139065:7)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:14)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)\n at wrapped (http://localhost:8082/__cypress/runner/cypress_runner.js:138024:19)", "diff": null }, "uuid": "b83c7184-81bc-4f06-99bc-a9c0a76f7b18", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @currentProps-Human Female", "fullTitle": "MultiFlatmapVuer image rendering for @currentProps-Human Female", "timedOut": null, "duration": 47733, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Human Female_color maps should be almost identical: expected 0.018007960272571562 to be below 0.0001", "estack": "AssertionError: Human Female_color maps should be almost identical: expected 0.018007960272571562 to be below 0.0001\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at Proxy. (http://localhost:8082/__cypress/runner/cypress_runner.js:139055:9)\n at Proxy.assertBelow (http://localhost:8082/__cypress/runner/cypress_runner.js:80734:12)\n at Proxy.methodWrapper (http://localhost:8082/__cypress/runner/cypress_runner.js:78188:25)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:114)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)", "diff": "- 0.018007960272571562\n+ 0.0001\n" }, "uuid": "63bcac15-0a9c-41d4-b9c0-eeab6800433b", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @currentProps-Human Male", "fullTitle": "MultiFlatmapVuer image rendering for @currentProps-Human Male", "timedOut": null, "duration": 51962, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Human Male_color maps should be almost identical: expected 0.018030140598622357 to be below 0.0001", "estack": "AssertionError: Human Male_color maps should be almost identical: expected 0.018030140598622357 to be below 0.0001\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at Proxy. (http://localhost:8082/__cypress/runner/cypress_runner.js:139055:9)\n at Proxy.assertBelow (http://localhost:8082/__cypress/runner/cypress_runner.js:80734:12)\n at Proxy.methodWrapper (http://localhost:8082/__cypress/runner/cypress_runner.js:78188:25)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:114)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)", "diff": "- 0.018030140598622357\n+ 0.0001\n" }, "uuid": "e6165fff-9b80-487a-8962-212c40abdc97", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @currentProps-Rat", "fullTitle": "MultiFlatmapVuer image rendering for @currentProps-Rat", "timedOut": null, "duration": 60792, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Rat_color maps should be almost identical: expected 0.027153155151380726 to be below 0.0001", "estack": "AssertionError: Rat_color maps should be almost identical: expected 0.027153155151380726 to be below 0.0001\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at Proxy. (http://localhost:8082/__cypress/runner/cypress_runner.js:139055:9)\n at Proxy.assertBelow (http://localhost:8082/__cypress/runner/cypress_runner.js:80734:12)\n at Proxy.methodWrapper (http://localhost:8082/__cypress/runner/cypress_runner.js:78188:25)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:114)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)", "diff": "- 0.027153155151380726\n+ 0.0001\n" }, "uuid": "2fbd284c-c81f-49ac-941e-957e05e8293d", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @currentProps-Mouse", "fullTitle": "MultiFlatmapVuer image rendering for @currentProps-Mouse", "timedOut": null, "duration": 53647, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Mouse_color maps should be almost identical: expected undefined to be a number or a date", "estack": "AssertionError: Mouse_color maps should be almost identical: expected undefined to be a number or a date\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at (http://localhost:8082/__cypress/runner/cypress_runner.js:139065:7)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:14)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)\n at wrapped (http://localhost:8082/__cypress/runner/cypress_runner.js:138024:19)", "diff": null }, "uuid": "86b64e79-1dbe-4233-98a0-3a05be6e4214", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @currentProps-Pig", "fullTitle": "MultiFlatmapVuer image rendering for @currentProps-Pig", "timedOut": null, "duration": 53226, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Pig_color maps should be almost identical: expected undefined to be a number or a date", "estack": "AssertionError: Pig_color maps should be almost identical: expected undefined to be a number or a date\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at (http://localhost:8082/__cypress/runner/cypress_runner.js:139065:7)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:14)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)\n at wrapped (http://localhost:8082/__cypress/runner/cypress_runner.js:138024:19)", "diff": null }, "uuid": "ae61ee55-c51e-4159-b00e-e3c502f3267d", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false }, { "title": "image rendering for @currentProps-Cat", "fullTitle": "MultiFlatmapVuer image rendering for @currentProps-Cat", "timedOut": null, "duration": 56421, "state": "failed", "speed": null, "pass": false, "fail": true, "pending": false, "context": null, "code": "cy.loadMultiFlatmap(entry, species.name)\n cy.get('@readySpy').should('have.been.calledWith').then(() => {\n const multiFlatmapVuer = window.Cypress.multiFlatmapVuer\n const flatmapVuer = multiFlatmapVuer.$refs[species.name][0]\n cy.get('.el-loading-mask', { timeout: 30000 }).should('not.exist')\n cy.wrap(multiFlatmapVuer.activeSpecies).should('eq', species.name)\n // hide pathways\n cy.get('.pathway-location > .pathway-container:visible').contains('Pathways').parent().siblings().children('.el-checkbox').click()\n // hide drawer\n cy.get('.pathway-location > .drawer-button:visible').click()\n cy.wait(2000)\n cy.get('.maplibregl-touch-zoom-rotate > .maplibregl-canvas:visible').as('canvas')\n cy.log(`THE LATEST ${entry} ${species.name} MAP UUID IS ${flatmapVuer.mapImp.uuid}`)\n for (let i = 0; i < organTypes.length; i++) {\n const type = organTypes[i];\n cy.then(() => {\n if (type === 'grayscale') {\n flatmapVuer.mapImp.setPaint({ coloured: false })\n cy.wait(3000)\n }\n })\n cy.get('@canvas').compareSnapshot(`${species.name}_${type}`).then(comparisonResults => {\n // Percentage of minor pixel changes usually very small\n // Assume it will not have lot of pixel update in normal case\n expect(comparisonResults.percentage, `${species.name}_color maps should be almost identical`).to.be.lessThan(ERROR_TOLERANCE)\n })\n }\n })", "err": { "message": "AssertionError: Cat_color maps should be almost identical: expected undefined to be a number or a date", "estack": "AssertionError: Cat_color maps should be almost identical: expected undefined to be a number or a date\n at captureUserInvocationStack (http://localhost:8082/__cypress/runner/cypress_runner.js:139027:94)\n at (http://localhost:8082/__cypress/runner/cypress_runner.js:139065:7)\n at Context. (/home/cmiss/Jenkins/workspace/Flatmap Image Testing/cypress/component/MultiFlatmapVuer.cy.js:236:14)\n at getRet (http://localhost:8082/__cypress/runner/cypress_runner.js:118810:20)\n at tryCatcher (http://localhost:8082/__cypress/runner/cypress_runner.js:1807:23)\n at Promise.attempt.Promise.try (http://localhost:8082/__cypress/runner/cypress_runner.js:4315:29)\n at Context.thenFn (http://localhost:8082/__cypress/runner/cypress_runner.js:118821:66)\n at Context.then (http://localhost:8082/__cypress/runner/cypress_runner.js:119072:21)\n at wrapped (http://localhost:8082/__cypress/runner/cypress_runner.js:138024:19)", "diff": null }, "uuid": "37d4e055-46a3-4a7c-b903-01feda84bc27", "parentUUID": "b0a1c22b-76f8-45aa-a88a-63bf6d83bfdd", "isHook": false, "skipped": false } ], "suites": [], "passes": [ "787becef-1bcd-4c59-a365-0e3fc7a0970b" ], "failures": [ "7c884ee1-f880-4356-807d-485d5151ec38", "53dbad47-05b9-4ac6-a05d-1ed17490d8b1", "86cb78f0-82b8-4636-b576-4496184da81c", "697aea8d-3521-43df-9a9f-ed7769fda57d", "481c9d75-57a5-4780-8a44-d0bfbb4c536a", "8fefa5c9-933f-40e5-a10d-d48749846367", "b83c7184-81bc-4f06-99bc-a9c0a76f7b18", "63bcac15-0a9c-41d4-b9c0-eeab6800433b", "e6165fff-9b80-487a-8962-212c40abdc97", "2fbd284c-c81f-49ac-941e-957e05e8293d", "86b64e79-1dbe-4233-98a0-3a05be6e4214", "ae61ee55-c51e-4159-b00e-e3c502f3267d", "37d4e055-46a3-4a7c-b903-01feda84bc27" ], "pending": [], "skipped": [], "duration": 773663, "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": true, "reportFilename": "mochawesome", "saveHtml": true, "saveJson": true, "consoleReporter": "spec", "useInlineDiffs": false, "code": true }, "version": "7.1.4" }, "marge": { "options": { "id": "default", "reportDir": "cypress/reports/mocha", "quiet": true, "overwrite": false, "html": true, "json": true }, "version": "6.3.0" } } }