From bda5ae10dd17ca6176dd462e920d22d8d90a81f6 Mon Sep 17 00:00:00 2001 From: Miguel Langarano Date: Sat, 9 Sep 2023 15:06:56 -0500 Subject: [PATCH] fix for cypress 13 ccy 1.10 --- e2e/cypress-12-demo/scripts/files.ts | 91 +-- e2e/cypress-12-demo/scripts/test.ts | 520 +++++++++-------- e2e/cypress-13-demo/cypress/e2e/a.spec.js | 7 + e2e/cypress-13-demo/cypress/e2e/b.spec.js | 21 + e2e/cypress-13-demo/cypress/e2e/c.spec.js | 5 + e2e/cypress-13-demo/cypress/e2e/d.spec.js | 13 + .../cypress/e2e/retries.spec.js | 16 - e2e/cypress-13-demo/cypress/e2e/xxx.spec.js | 43 -- .../currents-api-output-reference.json | 2 +- .../cypress-cloud-output-reference.json | 2 +- e2e/cypress-13-demo/scripts/files.ts | 91 +-- e2e/cypress-13-demo/scripts/test.ts | 536 ++++++++++-------- .../currents-api-validation.json | 2 +- .../cypress-cloud-validation.json | 2 +- 14 files changed, 742 insertions(+), 609 deletions(-) create mode 100644 e2e/cypress-13-demo/cypress/e2e/a.spec.js create mode 100644 e2e/cypress-13-demo/cypress/e2e/b.spec.js create mode 100644 e2e/cypress-13-demo/cypress/e2e/c.spec.js create mode 100644 e2e/cypress-13-demo/cypress/e2e/d.spec.js delete mode 100644 e2e/cypress-13-demo/cypress/e2e/retries.spec.js delete mode 100644 e2e/cypress-13-demo/cypress/e2e/xxx.spec.js diff --git a/e2e/cypress-12-demo/scripts/files.ts b/e2e/cypress-12-demo/scripts/files.ts index 9bbfa75..ee82bcf 100644 --- a/e2e/cypress-12-demo/scripts/files.ts +++ b/e2e/cypress-12-demo/scripts/files.ts @@ -3,48 +3,61 @@ import { run } from "cypress-cloud"; import fs from "fs"; (async function runTests() { - const projectId = process.env.CURRENTS_PROJECT_ID || "2cI1I5"; - const recordKey = process.env.CURRENTS_RECORD_KEY || "YakSabgBLb7D40nZ"; - const apiKey = process.env.CURRENTS_API_KEY || "YpYIAerb1rWuOFrvf7ciK8Za8koKgrtRfoDPboQUOjScnBv91m4qAXSDb8Rb57m9"; - const apiUrl = "https://api.currents.dev/v1/runs/" + const projectId = process.env.CURRENTS_PROJECT_ID || "2cI1I5"; + const recordKey = process.env.CURRENTS_RECORD_KEY || "YakSabgBLb7D40nZ"; + const apiKey = + process.env.CURRENTS_API_KEY || + "YpYIAerb1rWuOFrvf7ciK8Za8koKgrtRfoDPboQUOjScnBv91m4qAXSDb8Rb57m9"; + const apiUrl = "https://api.currents.dev/v1/runs/"; - const ciBuildId = `run-api-smoke-${new Date().toISOString()}`; - const result: any = await run({ - ciBuildId, - projectId, - recordKey, - batchSize: 4 - }); - assert(result !== undefined); + const ciBuildId = `run-api-smoke-${new Date().toISOString()}`; + const result: any = await run({ + ciBuildId, + projectId, + recordKey, + batchSize: 4, + }); + assert(result !== undefined); - const headers = new Headers({ - 'Authorization': `Bearer ${apiKey}`, - }); + const headers = new Headers({ + Authorization: `Bearer ${apiKey}`, + }); - fs.writeFile('data-references/ccy-1.10-cypress-12/cypress-cloud-output-reference.json', JSON.stringify(result), (err) => { - if (err) throw err; - console.log('file saved'); - }); + fs.writeFile( + "data-references/ccy-1.10-cypress-12/cypress-cloud-output-reference.json", + JSON.stringify(result), + (err) => { + if (err) throw err; + console.log("file saved"); + } + ); - const runUrl = result.runUrl; + const runUrl = result.runUrl; - fetch(`${apiUrl}${runUrl.split("run/")[1]}`, { - method: "GET", - headers - }) - .then(response => { - if (!response.ok) { - throw new Error(`HTTP error! Status: ${response.status}`); - } - return response.json(); - }) - .then(data => { - fs.writeFile('data-references/ccy-1.10-cypress-12/currents-api-output-reference.json', JSON.stringify(data), (err) => { - if (err) throw err; - console.log('file saved'); - }); - }) - .catch(error => { - console.error('There was an error in fetch request:', error.message); - }); + await fetch(`${apiUrl}${runUrl.split("run/")[1]}`, { + method: "GET", + headers, + }) + .then((response) => { + if (!response.ok) { + throw new Error(`HTTP error! Status: ${response.status}`); + } + return response.json(); + }) + .then((data) => { + fs.writeFile( + "data-references/ccy-1.10-cypress-12/currents-api-output-reference.json", + JSON.stringify(data), + (err) => { + if (err) throw err; + console.log("file saved"); + } + ); + }) + .catch((error) => { + console.error( + "There was an error in fetch request:", + error.message + ); + }); })(); diff --git a/e2e/cypress-12-demo/scripts/test.ts b/e2e/cypress-12-demo/scripts/test.ts index 3b786ef..7e17e32 100644 --- a/e2e/cypress-12-demo/scripts/test.ts +++ b/e2e/cypress-12-demo/scripts/test.ts @@ -1,263 +1,315 @@ import fs from "fs"; -import { expect } from 'chai'; +import { expect } from "chai"; type ComparisonResult = { - path: string; - valueA: any; - valueB: any; - isEqual: boolean; - note?: string; + path: string; + valueA: any; + valueB: any; + isEqual: boolean; + note?: string; }; -function compareObjectsRecursively(objA: any, objB: any, path: string = ''): ComparisonResult[] { - let results: ComparisonResult[] = []; +function compareObjectsRecursively( + objA: any, + objB: any, + path: string = "" +): ComparisonResult[] { + let results: ComparisonResult[] = []; - // If both are objects but neither arrays nor strings. - if (typeof objA === 'object' && objA !== null && !(objA instanceof Array) && typeof objA !== 'string' && - typeof objB === 'object' && objB !== null && !(objB instanceof Array) && typeof objB !== 'string') { + // If both are objects but neither arrays nor strings. + if ( + typeof objA === "object" && + objA !== null && + !(objA instanceof Array) && + typeof objA !== "string" && + typeof objB === "object" && + objB !== null && + !(objB instanceof Array) && + typeof objB !== "string" + ) { + const keys = new Set([...Object.keys(objA), ...Object.keys(objB)]); - const keys = new Set([...Object.keys(objA), ...Object.keys(objB)]); + keys.forEach((key) => { + const newPath = path ? `${path}.${key}` : key; + results = results.concat( + compareObjectsRecursively(objA[key], objB[key], newPath) + ); + }); + } + // If both are arrays + else if (Array.isArray(objA) && Array.isArray(objB)) { + const maxLength = Math.max(objA.length, objB.length); + for (let i = 0; i < maxLength; i++) { + const newPath = `${path}[${i}]`; + results = results.concat( + compareObjectsRecursively(objA[i], objB[i], newPath) + ); + } + } else { + const isEqual = objA === objB; + const note = + objA === undefined + ? "Does not exist in A" + : objB === undefined + ? "Does not exist in B" + : undefined; - keys.forEach(key => { - const newPath = path ? `${path}.${key}` : key; - results = results.concat(compareObjectsRecursively(objA[key], objB[key], newPath)); - }); - } - // If both are arrays - else if (Array.isArray(objA) && Array.isArray(objB)) { - const maxLength = Math.max(objA.length, objB.length); - for (let i = 0; i < maxLength; i++) { - const newPath = `${path}[${i}]`; - results = results.concat(compareObjectsRecursively(objA[i], objB[i], newPath)); - } - } - else { - const isEqual = objA === objB; - const note = objA === undefined ? "Does not exist in A" : objB === undefined ? "Does not exist in B" : undefined; + results.push({ + path: path || "root", + valueA: objA, + valueB: objB, + isEqual: isEqual, + note: note, + }); + } - results.push({ - path: path || 'root', - valueA: objA, - valueB: objB, - isEqual: isEqual, - note: note - }); - } - - return results; + return results; } -const avoidableProperties: { property: string, mustHave: boolean }[] = [ - { - property: "runId", - mustHave: true - }, - { - property: "createdAt", - mustHave: true - }, - { - property: "groupId", - mustHave: true - }, - { - property: "createdAt", - mustHave: true - }, - { - property: "ciBuildId", - mustHave: true - }, - { - property: "instanceId", - mustHave: true - }, - { - property: "claimedAt", - mustHave: true - }, - { - property: "completedAt", - mustHave: true - }, - { - property: "machineId", - mustHave: true - }, - { - property: "videoUrl", - mustHave: true - }, - { - property: "duration", - mustHave: true - }, - { - property: "endedAt", - mustHave: true - }, - { - property: "startedAt", - mustHave: true - }, - { - property: "wallClockDuration", - mustHave: true - }, - { - property: "wallClockStartedAt", - mustHave: true - }, - { - property: "wallClockEndedAt", - mustHave: true - }, - { - property: "screenshotId", - mustHave: true - }, - { - property: "takenAt", - mustHave: true - }, - { - property: "screenshotURL", - mustHave: true - }, - { - property: "size", - mustHave: false - }, - { - property: "dimensions", - mustHave: false - }, - { - property: "multipart", - mustHave: false - }, - { - property: "specName", - mustHave: false - }, - { - property: "testFailure", - mustHave: false - }, - { - property: "scaled", - mustHave: false - }, - { - property: "blackout", - mustHave: false - }, - { - property: "blackout", - mustHave: false - }, - { - property: "totalDuration", - mustHave: true - }, - { - property: "start", - mustHave: true - }, - { - property: "end", - mustHave: true - }, - { - property: "error.message", - mustHave: true - }, - { - property: "error.stack", - mustHave: true - }, - { - property: "lifecycle", - mustHave: true - }, - { - property: "fnDuration", - mustHave: true - }, - { - property: "afterFnDuration", - mustHave: true - }, - { - property: "videoTimestamp", - mustHave: true - }, - { - property: "config.resolved.env.currents_temp_file.value", - mustHave: true - }, - { - property: "socketId", - mustHave: true - }, - { - property: "runUrl", - mustHave: true - } +const avoidableProperties: { property: string; mustHave: boolean }[] = [ + { + property: "runId", + mustHave: true, + }, + { + property: "createdAt", + mustHave: true, + }, + { + property: "groupId", + mustHave: true, + }, + { + property: "createdAt", + mustHave: true, + }, + { + property: "ciBuildId", + mustHave: true, + }, + { + property: "instanceId", + mustHave: true, + }, + { + property: "claimedAt", + mustHave: true, + }, + { + property: "completedAt", + mustHave: true, + }, + { + property: "machineId", + mustHave: true, + }, + { + property: "videoUrl", + mustHave: true, + }, + { + property: "duration", + mustHave: true, + }, + { + property: "endedAt", + mustHave: true, + }, + { + property: "startedAt", + mustHave: true, + }, + { + property: "wallClockDuration", + mustHave: true, + }, + { + property: "wallClockStartedAt", + mustHave: true, + }, + { + property: "wallClockEndedAt", + mustHave: true, + }, + { + property: "screenshotId", + mustHave: true, + }, + { + property: "takenAt", + mustHave: true, + }, + { + property: "screenshotURL", + mustHave: true, + }, + { + property: "size", + mustHave: false, + }, + { + property: "dimensions", + mustHave: false, + }, + { + property: "multipart", + mustHave: false, + }, + { + property: "specName", + mustHave: false, + }, + { + property: "testFailure", + mustHave: false, + }, + { + property: "scaled", + mustHave: false, + }, + { + property: "blackout", + mustHave: false, + }, + { + property: "blackout", + mustHave: false, + }, + { + property: "totalDuration", + mustHave: true, + }, + { + property: "start", + mustHave: true, + }, + { + property: "end", + mustHave: true, + }, + { + property: "error.message", + mustHave: true, + }, + { + property: "error.stack", + mustHave: true, + }, + { + property: "lifecycle", + mustHave: true, + }, + { + property: "fnDuration", + mustHave: true, + }, + { + property: "afterFnDuration", + mustHave: true, + }, + { + property: "videoTimestamp", + mustHave: true, + }, + { + property: "config.resolved.env.currents_temp_file.value", + mustHave: true, + }, + { + property: "socketId", + mustHave: true, + }, + { + property: "runUrl", + mustHave: true, + }, + { + property: "commit.message", + mustHave: true, + }, + { + property: "commit.sha", + mustHave: true, + }, ]; function isAvoidableProperty(property: string) { - const avoidableData = avoidableProperties.find(item => property.includes(item.property)); - if (avoidableData) { - return avoidableData; - } - return; + const avoidableData = avoidableProperties.find((item) => + property.includes(item.property) + ); + if (avoidableData) { + return avoidableData; + } + return; } function testEachResults(results: ComparisonResult[]) { - results.forEach((result) => { - if (result.valueA) { - const avoidableData = isAvoidableProperty(result.path); - if (!avoidableData) { - expect(result.valueA, `The values are not equal at: ${result.path}. ${result.note ?? ""}`).to.equal(result.valueB); - return; - } + results.forEach((result) => { + if (result.valueA) { + const avoidableData = isAvoidableProperty(result.path); + if (!avoidableData) { + expect( + result.valueA, + `The values are not equal at: ${result.path}. ${ + result.note ?? "" + }` + ).to.equal(result.valueB); + return; + } - if (avoidableData.mustHave) { - expect(result.valueB, `The values at ${result.path} does not exist and it should. ${result.note ?? ""}`).not.to.equal("Does not exist"); - return; - } - } - }) + if (avoidableData.mustHave) { + expect( + result.valueB, + `The values at ${ + result.path + } does not exist and it should. ${result.note ?? ""}` + ).not.to.equal("Does not exist"); + return; + } + } + }); } - - (async function runTest() { - try { - const originalCurrentApiFile = fs.readFileSync('data-references/ccy-1.9.4-cypress-12/currents-api-output-reference.json', 'utf8'); - const originalCypressCloudFile = fs.readFileSync('data-references/ccy-1.9.4-cypress-12/cypress-cloud-output-reference.json', 'utf8'); - - const originalCurrentApi = JSON.parse(originalCurrentApiFile); - const originalCypressCloud = JSON.parse(originalCypressCloudFile); - - const modifiedCurrentApiFile = fs.readFileSync('data-references/ccy-1.10-cypress-12/currents-api-output-reference.json', 'utf8'); - const modifiedCypressCloudFile = fs.readFileSync('data-references/ccy-1.10-cypress-12/cypress-cloud-output-reference.json', 'utf8'); - - const modifiedCurrentApi = JSON.parse(modifiedCurrentApiFile); - const modifiedCypressCloud = JSON.parse(modifiedCypressCloudFile); + try { + const originalCurrentApiFile = fs.readFileSync( + "data-references/ccy-1.9.4-cypress-12/currents-api-output-reference.json", + "utf8" + ); + const originalCypressCloudFile = fs.readFileSync( + "data-references/ccy-1.9.4-cypress-12/cypress-cloud-output-reference.json", + "utf8" + ); + const originalCurrentApi = JSON.parse(originalCurrentApiFile); + const originalCypressCloud = JSON.parse(originalCypressCloudFile); - const currentsApiResults = compareObjectsRecursively(originalCurrentApi, modifiedCurrentApi); + const modifiedCurrentApiFile = fs.readFileSync( + "data-references/ccy-1.10-cypress-12/currents-api-output-reference.json", + "utf8" + ); + const modifiedCypressCloudFile = fs.readFileSync( + "data-references/ccy-1.10-cypress-12/cypress-cloud-output-reference.json", + "utf8" + ); - testEachResults(currentsApiResults); + const modifiedCurrentApi = JSON.parse(modifiedCurrentApiFile); + const modifiedCypressCloud = JSON.parse(modifiedCypressCloudFile); - const cypressCloudResults = compareObjectsRecursively(originalCypressCloud, modifiedCypressCloud); + const currentsApiResults = compareObjectsRecursively( + originalCurrentApi, + modifiedCurrentApi + ); - testEachResults(cypressCloudResults); + testEachResults(currentsApiResults); + const cypressCloudResults = compareObjectsRecursively( + originalCypressCloud, + modifiedCypressCloud + ); - } catch (err) { - console.error('Process error:', err); - } + testEachResults(cypressCloudResults); + } catch (err) { + console.error("Process error:", err); + } })(); diff --git a/e2e/cypress-13-demo/cypress/e2e/a.spec.js b/e2e/cypress-13-demo/cypress/e2e/a.spec.js new file mode 100644 index 0000000..0ba5b60 --- /dev/null +++ b/e2e/cypress-13-demo/cypress/e2e/a.spec.js @@ -0,0 +1,7 @@ +describe('Failing test with 2 attempts', () => { + it('should try 2 times', { + retries: 2, + }, () => { + cy.wrap(false).should('be.true'); + }); +}); diff --git a/e2e/cypress-13-demo/cypress/e2e/b.spec.js b/e2e/cypress-13-demo/cypress/e2e/b.spec.js new file mode 100644 index 0000000..87843a6 --- /dev/null +++ b/e2e/cypress-13-demo/cypress/e2e/b.spec.js @@ -0,0 +1,21 @@ +let attempt = 0; +describe('Failing test with 2 attempts, passed test and flaky test with 2 attempts', () => { + it('should try 2 times', { + retries: 2, + }, () => { + cy.wrap(false).should('be.true'); + }); + + it('should assert that true is true', () => { + cy.wrap(true).should('be.true'); + }); + + it('should fail on the first attempt and pass on the second', { retries: 2 }, () => { + if (attempt === 0) { + attempt++; + cy.wrap(false).should('be.true'); // This will fail on the first attempt + } else { + cy.wrap(true).should('be.true'); // This will pass on the second attempt + } + }); +}); diff --git a/e2e/cypress-13-demo/cypress/e2e/c.spec.js b/e2e/cypress-13-demo/cypress/e2e/c.spec.js new file mode 100644 index 0000000..47486ad --- /dev/null +++ b/e2e/cypress-13-demo/cypress/e2e/c.spec.js @@ -0,0 +1,5 @@ +describe('Ignored test', () => { + it.skip('should be a skipped test', () => { + cy.wrap(false).should('be.true'); + }); +}); diff --git a/e2e/cypress-13-demo/cypress/e2e/d.spec.js b/e2e/cypress-13-demo/cypress/e2e/d.spec.js new file mode 100644 index 0000000..405f45f --- /dev/null +++ b/e2e/cypress-13-demo/cypress/e2e/d.spec.js @@ -0,0 +1,13 @@ +describe('Passed test with screenshot, passed test with no screenshots', () => { + it('should assert and take a screenshot', () => { + // Assert that true is true + cy.wrap(true).should('be.true'); + + // Take a screenshot + cy.screenshot('internal-assert-screenshot'); + }); + + it('should assert that true is true', () => { + cy.wrap(true).should('be.true'); + }); +}); diff --git a/e2e/cypress-13-demo/cypress/e2e/retries.spec.js b/e2e/cypress-13-demo/cypress/e2e/retries.spec.js deleted file mode 100644 index 2f43e44..0000000 --- a/e2e/cypress-13-demo/cypress/e2e/retries.spec.js +++ /dev/null @@ -1,16 +0,0 @@ -let i = 3; -describe("Retries", function () { - it( - "Runs a test with retries", - { - retries: 3, - }, - function () { - throw new Error("x".repeat(1024)); - // if (i > 1) { - // i--; - // } - // return; - } - ); -}); diff --git a/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js b/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js deleted file mode 100644 index d54f091..0000000 --- a/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js +++ /dev/null @@ -1,43 +0,0 @@ -let TODO_ITEM_ONE = "item A"; -let TODO_ITEM_TWO = "item B"; -let TODO_ITEM_THREE = "item C"; - -context("Clear completed button", function () { - beforeEach(function () { - cy.createDefaultTodos().as("todos"); - }); - - it( - "should display the correct text", - { - tags: ["@tagA"], - }, - function () { - cy.get("@todos").eq(0).find(".toggle").check(); - cy.get(".clear-completed").contains("Clear completed X"); - } - ); - - it( - "should remove completed items when clicked", - { - tags: ["@tagB"], - }, - function () { - cy.get("@todos").eq(1).find(".toggle").check(); - - cy.get(".clear-completed").click(); - cy.get("@todos").should("have.length", 2); - cy.get(".todo-list li").eq(0).should("contain", TODO_ITEM_ONE); - cy.get(".todo-list li").eq(1).should("contain", "XXXX"); - } - ); - - it("should be hidden when there are no items that are completed", function () { - cy.get("@todos").eq(1).find(".toggle").check(); - - cy.get(".clear-completed").should("be.visible").click(); - - cy.get(".clear-completed").should("not.be.visible"); - }); -}); diff --git a/e2e/cypress-13-demo/data-references/ccy-1.10-cypress-13/currents-api-output-reference.json b/e2e/cypress-13-demo/data-references/ccy-1.10-cypress-13/currents-api-output-reference.json index 1e0e013..3517868 100644 --- a/e2e/cypress-13-demo/data-references/ccy-1.10-cypress-13/currents-api-output-reference.json +++ b/e2e/cypress-13-demo/data-references/ccy-1.10-cypress-13/currents-api-output-reference.json @@ -1 +1 @@ -{"status":"OK","data":{"runId":"6c996f69397aa4f2","projectId":"2cI1I5","createdAt":"2023-09-07T15:45:00.395Z","tags":[],"cypressVersion":"13.1.0","cancellation":null,"timeout":{"isTimeout":false},"groups":[{"groupId":"run-api-smoke-2023-09-07T15:44:57.172Z","platform":{"osName":"darwin","osVersion":"22.5.0","browserName":"Electron","browserVersion":"106.0.5249.51"},"createdAt":"2023-09-07T15:45:00.395Z","instances":{"overall":2,"claimed":2,"complete":2,"passes":0,"failures":2},"tests":{"overall":4,"passes":1,"failures":3,"pending":0,"skipped":0,"retries":0,"flaky":0}}],"meta":{"ciBuildId":"run-api-smoke-2023-09-07T15:44:57.172Z","commit":{"branch":"fix/cypress-13-ml","remoteOrigin":null,"authorEmail":"agoldis@gmail.com","authorName":"Andrew Goldis","message":"Merge branch 'fix/cypress-13-ml' of https://github.com/currents-dev/cypress-cloud-private into fix/cypress-13-ml\n","sha":"9a83d60ae901f8975ff343b8d4330258d35f01d3"},"platform":{"osName":"darwin","osVersion":"22.5.0","browserName":"Electron","browserVersion":"106.0.5249.51"}},"specs":[{"groupId":"run-api-smoke-2023-09-07T15:44:57.172Z","spec":"cypress/e2e/retries.spec.js","instanceId":"SPL3dLc8e0hy","claimedAt":"2023-09-07T15:45:00.775Z","completedAt":"2023-09-07T15:45:07.729Z","machineId":"3fadL7JMOlDe","worker":null,"results":{"stats":{"duration":1908,"endedAt":"2023-09-07T15:45:07.004Z","startedAt":"2023-09-07T15:45:05.096Z","failures":1,"passes":0,"pending":0,"skipped":0,"suites":1,"tests":1,"wallClockDuration":1908,"wallClockStartedAt":"2023-09-07T15:45:05.096Z","wallClockEndedAt":"2023-09-07T15:45:07.004Z"},"screenshots":[{"testAttemptIndex":0,"size":331358,"takenAt":"2023-09-07T15:45:05.572Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"retries.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":236,"testId":"r0","name":"screenshot","screenshotId":"radcleiZs7RLB80lEc4bS","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/I0YCVxPsCcIp.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=PsHmYXPaPxye3SEm~G9p7g4Rme6n3wnt-U95n4FODZWNl9uX-vh~Y8GTQTSZCMwWvjxYXQIm4~keEP-cA-zNGkA-77EDFTYx2vgoj0flzTSHXc1pINZiz824NjDyeeDy6gH9V5EqjrbuwqGvfc2Njy~FE4ysz8X6qt4GMNdEPNseBV3JgR13e0D6kXbafxoa-jqQUby~Zyh4ZVjcdPS2fMOskBb~~0m8sYIIDqsafnqbtkILHqFsmhB44G6k3w4bFsehyNnlES79mkLtH5Mf5pkwFwEm0hFKU6-JxUVw1EE16WCHlhdwVGyX57SADj9HdaCwQVNWmdF71J-a1H4LpA__","height":0,"width":0},{"testAttemptIndex":1,"size":379236,"takenAt":"2023-09-07T15:45:05.978Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"retries.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":220,"testId":"r0","name":"screenshot","screenshotId":"X7_GS-Ai4FbXVBu7s2mmm","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/ta4mK42F5vvR.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=TRYeyps3i5IppXcjmA5HKHwTHY7upc8IUSBhYf81PJC0oio7ufZgUgodr2414NVY5ouCqIyHBzt3F5RHT5Gjtatx7eWpkhdvr6oR0~joBeCHBThaBJyYJ4piAZzlZuU~hgg51c-sb6fg~q~hQgej8QCA7GRLB2tuYIXtxoyvV-JLz~1ZFW1xT9g~JO1BNAMQMm1yKwED~UJ3rYb46esZxuDXe73Y0Pa3I8FLSgc9O9AUP8wwMFjSh-wi1qbAD4lROqrvvTI-R~-DJQC4KDlWo92r1UQAsrhlXLf5SriMmNUF9IUMIZJ5fsSAloQdVcU~wuuUWxIUA2m7H1008BRt1Q__","height":0,"width":0},{"testAttemptIndex":2,"size":378475,"takenAt":"2023-09-07T15:45:06.347Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"retries.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":233,"testId":"r0","name":"screenshot","screenshotId":"QENkTXmggrSghsbJQDlZR","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/nd1Nd9sKtrOi.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=Jr~hbpySlB2PD75NUjCUEkKp1NzCS4O1vPnB6khsrwAnz9U5oh5IzTmng06em~54oX1kx0JgxMfnWzX64uKZrj44lQv0Wy~Zpzbp0qF~NFLlDVvHI4~6fJyZLTPJNFXLp9MCRM9t5zVx29UoV-Zwn9XSdqEvarGztV-IlWZXGrlHFu~KPfjxTUVESL9AMouSt-hKXoLLZ6hVw76HRfIZof1kiuC1m-8FG0amC-~pMyjR7cn4KHw0A5yWKIbZ4Ft5wsPQGIKxMtADOusbfBohsDr2JTxAhSNdEUV1IqLmigPGIs0QR5DxrSPCWV2TXc98wP3g5ndXB2QaVtxTePdizQ__","height":0,"width":0},{"testAttemptIndex":3,"size":377835,"takenAt":"2023-09-07T15:45:06.735Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"retries.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":210,"testId":"r0","name":"screenshot","screenshotId":"9CsLIiDfGT5keaGHYOPbm","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/uNPZC29pz5j3.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=S5GVYf8SXuu7HsgkKuDKe~OLnkM1GC0P5hBECY2gXzcg6V~2xYSjw85TVkRs6R9cFJsymbq5Byo4JUNCblGZ0DdROC545bRMDXwuQ41YvUNYbatvIpaBKoJtkww9J0vbfdVeUk0eAwbLx3F3YqhtIyWxGoGRpPH3CdSpvC9VjmtVTLOMVcEXAiq~a4iXFnJg7ZMZB4f6PjeEPYPIEVPsiVDzePlST47kd~6T9CFxIYkayrqFu0NTwPCeDfEhvRUa1SMSyuimB0CUdWP0Pt~0cbgXFVRALmClQOCBahOxlwVZzOmTrxXemkPBBf1im4ZI1jyw~z5KgNHdwg5wYDLWgA__","height":0,"width":0}],"exception":null,"flaky":0,"videoUrl":null}},{"groupId":"run-api-smoke-2023-09-07T15:44:57.172Z","spec":"cypress/e2e/xxx.spec.js","instanceId":"mrswD0yVSHQt","claimedAt":"2023-09-07T15:45:00.787Z","completedAt":"2023-09-07T15:45:20.638Z","machineId":"3fadL7JMOlDe","worker":null,"results":{"stats":{"duration":11899,"endedAt":"2023-09-07T15:45:19.927Z","startedAt":"2023-09-07T15:45:08.028Z","failures":2,"passes":1,"pending":0,"skipped":0,"suites":1,"tests":3,"wallClockDuration":11899,"wallClockStartedAt":"2023-09-07T15:45:08.028Z","wallClockEndedAt":"2023-09-07T15:45:19.927Z"},"screenshots":[{"testAttemptIndex":0,"size":418323,"takenAt":"2023-09-07T15:45:13.129Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"xxx.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":208,"testId":"r0","name":"screenshot","screenshotId":"1B57GNERprj6rJ0Th9AiI","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/uasIN022DFyM.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=R8z87m8ABLHPs3l3qR6otizC98Q9FGqS6rO8vJPwFlvXf9dxR~Wur8qyZT8F0JbljH5ZwQSehAKsgkyxEO5Co78-i3XoSmYd2yIhkgbd~To7OfgMyZm~jDI3LojsqRIxii5NeDbAYEn0ggGVdnKopB7m8R5arJfOJP-u-9L8MXHaSAapf34AcdKXcKKq2nyJVBodF5uBNmuxwZ0-crwJB~8FFi~nksjy9JQN8uuwaTMUncq9jtat1acdUXM-z5GYvZjEEA301Nb10ateO4JtlYX2iWCV1Zb4VI-Z0cGTsLKGog7dP0xwjGlBTYF6EtXTGjV8910j20Wi1hLesrQlvA__","height":0,"width":0},{"testAttemptIndex":0,"size":388041,"takenAt":"2023-09-07T15:45:18.500Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"xxx.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":179,"testId":"r1","name":"screenshot","screenshotId":"W88Dz4P4pKutQcFmkvzmp","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/1cbuPN1QFGat.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=kqjllTKhAsMOleOwXqRLHd4zZ2-vTF915rHr9dHNtibDlmlGw9CwURfibfSv8zYYVFUuHqQP3O9m1LjwCD8LsGZGmIBzxHFDNMhxu7~PZJd5ZfUBriqVyQ-qbx~UuCd5TWbmboR2zwpDzOzp2pmy6~YOlfv4l9-yBBJuCqaXbGdfcNZMAhH3TrMr-FIQGGRTTokuxQ2N7sHVbKQWI26pcwHGZk~ajG1DvKxMg6m-qDR-6uMqabURKCsU0oaVS81fraQypvJBkzeKe05Wi4oN95Tbd2Jyuxe2mIJqjBHbBoExCg5AQOq~hiQuf6dU8O5hzfog9YZ-BY6yzzucIcQctg__","height":0,"width":0}],"exception":null,"flaky":0,"videoUrl":null}}],"completionState":"COMPLETE","status":"FAILED"}} \ No newline at end of file +{"status":"OK","data":{"runId":"271a54ce36c805d4","projectId":"2cI1I5","createdAt":"2023-09-09T13:15:22.456Z","tags":[],"cypressVersion":"12.17.4","cancellation":null,"timeout":{"isTimeout":false},"groups":[{"groupId":"run-api-smoke-2023-09-09T13:15:19.184Z","platform":{"osName":"darwin","osVersion":"22.5.0","browserName":"Electron","browserVersion":"106.0.5249.51"},"createdAt":"2023-09-09T13:15:22.456Z","instances":{"overall":4,"claimed":4,"complete":4,"passes":2,"failures":2},"tests":{"overall":7,"passes":4,"failures":2,"pending":1,"skipped":0,"retries":1,"flaky":1}}],"meta":{"ciBuildId":"run-api-smoke-2023-09-09T13:15:19.184Z","commit":{"branch":"fix/cypress-13-validation","remoteOrigin":null,"authorEmail":"miguelangarano@gmail.com","authorName":"Miguel Langarano","message":"automated test validation\n","sha":"2c08548749c6746a228f333488b335137b6d8a4a"},"platform":{"osName":"darwin","osVersion":"22.5.0","browserName":"Electron","browserVersion":"106.0.5249.51"}},"specs":[{"groupId":"run-api-smoke-2023-09-09T13:15:19.184Z","spec":"cypress/e2e/a.spec.js","instanceId":"3bDkEcnhnZ9e","claimedAt":"2023-09-09T13:15:22.987Z","completedAt":"2023-09-09T13:15:44.533Z","machineId":"AWFuj0716IyK","worker":null,"results":{"videoUrl":"https://fs.currents.dev/64af8eee5411be7416b22d5f/3bDkEcnhnZ9e_W2096y1xhRmj.mp4?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=mPJ-axvoO4TLHPN8NXcrBbXlfsQJwLVTp9h1tI5NK58Jtx9tX7JbkyUqjGN2BFoa07MlfUcQxu6Ad3wt~hdDlNogPjSxZPIFQZDOstFLmjgKhsskyS9UYnFMv~evCMX18JraosDS7bz5uJ6bzJPmrcUPu2b4mcW11GK4qo-B-bsfUbOybZ9S0ClHMpWVA1GYvbYCHt0a4AOu~BdxA55-eZfKstGpi4wz9Gs1XadbNb9SIYnoV7ioi7FehB05zfaomsGz9nCTaBnr~435KladP0oYFgU10vaCeCshW3vUgaByxd51Le8eGNy0mRNHcJshANgEkvuiqsLpxUMaxnRzmA__","stats":{"duration":14870,"endedAt":"2023-09-09T13:15:42.469Z","startedAt":"2023-09-09T13:15:27.599Z","failures":1,"passes":0,"pending":0,"skipped":0,"suites":1,"tests":1,"wallClockDuration":14870,"wallClockStartedAt":"2023-09-09T13:15:27.599Z","wallClockEndedAt":"2023-09-09T13:15:42.469Z"},"screenshots":[{"testAttemptIndex":0,"size":349117,"takenAt":"2023-09-09T13:15:33.051Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"a.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":303,"testId":"r0","name":"screenshot","screenshotId":"VRuw2eKqT49RduSY-vF4Z","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/A9G4a8ctMd13.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=wGFBj0pFBuehqoFwnd9dtjA7xfarlWweT-d8udLG2DpLPL5xJQ6FcTaSh7R62FSH5GnlIO60fFOxNHjHCLJ4m5LeUU-IX89lRdbutp3XF-l~t5T421s~EmPLv2caWTQ-sUA5JUhdoMmeOUqZNKiY~-jlQMeFxX4niuFh3p0wOxOscQjxgdUh440kx9XY8Hecn9qQZRP9x42iAjUDn8srTPVGJts5HNTrAEfBJlHKZidlyon1WN9myEb18pOqpV-12J9e1lHfVBjSPSOqX2i7grObo19XpdU1VWjDb4lSIFHXQch9961rsH9DOUyPBWkV6txxBHh8l-ok6VnJg3IVog__","height":0,"width":0},{"testAttemptIndex":1,"size":361908,"takenAt":"2023-09-09T13:15:37.578Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"a.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":206,"testId":"r0","name":"screenshot","screenshotId":"QQDhy7YciubliXABhg3Ju","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/rJcY4a8bLgFl.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=SknNUuaQOUGcUENfPI1bZEw6sBXy5STmx9jm-etPfgYgYGYFpqYZlFQEAGPJvuFXrW0EthWkw3qmWiECceS8jn3DjpXcGKsdCj1Hr8x55CK4CSPCU~sSFsdyNLoKN5IsSZqlTVirksnYqz68JbPCQx7RzI-m-8M5cpFCkGXMl1isi-TjGaHy8BqkkGK7QCjxGTvpxVbcK3Jd35A7vMCAtBGBpJ9bGJsyi6muAh8uC3VUksYwiq3xqcuSCnnf85UYHxYVi9SgivIY4W0ln5jvxAn1I6y7fxu9ZpmEBWXfPt8Z4egpRrnOwG3n9dni1Dx2xIR5YLZfIfHqUGyngr-Fyg__","height":0,"width":0},{"testAttemptIndex":2,"size":362007,"takenAt":"2023-09-09T13:15:42.210Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"a.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":207,"testId":"r0","name":"screenshot","screenshotId":"d2WfYdznt6e6c7bNNSTND","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/IZiGRvBJWPJ2.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=iQjTqpbAptdHvFe7PlSHeR2dJF8zwmx72gi8kwNqiBBSO-Zfz1pCUEXEukwo2YkdLWR-3aqCXqDQGU5skTpN0UBEH7LPMIEv1OE4fN1Cru0pyzgOnHVgyR47ezYtrLmCF5JjJnHTeMqIJVi7EZqDztXc9mMk~-SfR4kpIIMQqb5GpFPelWfZK6djpKviL7kQd5KhWiJ5GAsIbPwHTkotfLqCna8Mxv0ixcvVT5tfuNHZKxjwJav~slB2iK5GCiWotMrkrs5NFrPN4DeEwrSm85Hhzv~0neFwvoEz1CNd7gAz0xj2rY46jVFnBOm77TkAB5jgMgX0LdtW1RCRbtTGUQ__","height":0,"width":0}],"exception":null,"flaky":0}},{"groupId":"run-api-smoke-2023-09-09T13:15:19.184Z","spec":"cypress/e2e/b.spec.js","instanceId":"6v5viEDI89B7","claimedAt":"2023-09-09T13:15:54.397Z","completedAt":"2023-09-09T13:16:21.160Z","machineId":"AWFuj0716IyK","worker":null,"results":{"videoUrl":"https://fs.currents.dev/64af8eee5411be7416b22d5f/6v5viEDI89B7_HAJiKAUrD25s.mp4?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=eRweUGQqt9NPKOhPy~j3BI6RR25cJVGB5tp4pl2MX2Nk~PDlBJC--TKdTIZyJ2kqA4BdPW4kvPtw8CpTQtgZalLroPi4CuykN-tsVhPfr6WXlkQC9rO6a0SDVjxg3BxH5qWLDoRaOZIq-uTdDZce4Z3-FVwYYEwtwCg4vS6pcsPEooht6OvCOy9A6rAMRj9W8lRbTRKhVVBrBE0DGy7Xb3bqtwSdIaa7yMVjc7Vcar7qAKUwA-WDReCfRuzJ3U9EL~aJt2MPqAQ-OD9-Z1joMU0oUOn1mJq~stWzCnA6lUTeM5gYlsgS3nerb3knByXwvOaTikFhJ9AplNjRUf~1Yg__","stats":{"duration":20004,"endedAt":"2023-09-09T13:16:19.050Z","startedAt":"2023-09-09T13:15:59.046Z","failures":1,"passes":2,"pending":0,"skipped":0,"suites":1,"tests":3,"wallClockDuration":20004,"wallClockStartedAt":"2023-09-09T13:15:59.046Z","wallClockEndedAt":"2023-09-09T13:16:19.050Z"},"screenshots":[{"testAttemptIndex":0,"size":374371,"takenAt":"2023-09-09T13:16:04.433Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"b.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":256,"testId":"r0","name":"screenshot","screenshotId":"zw0F-aJXnXDDfKioFBhZV","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/e2YG89w9CFnt.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=cjCTKXhLYBlf1Ts0y3RojQCBmJEHqvlesCsvEcvqjW9GgvV9dj46WyiI2Vu8UZaQrsTlTvxz1gR4Im~wBrxxlZtqsU1V620aZTEPViVLqrez5RI~ZJWI6Gme8ji03xfuSGV5tGWPhUWDTIUM4GvvkQnyAdSN~l336MBP5MKU8CialMA8ttALf46p1hnm9HKfdqYXfCnfqowkRd7IK2ixflf6zjepCHhuVbX-qaavcHsXOrZ2ZoBBjBlD19o5X8EMba7shGd5s4l5bw488trWTuhr-VvAq0SApEAOVm9JTFQtJ7uuUsZzrwLYxmI7VgeIZw~Q0mpRiQrYfAjM9gLftA__","height":0,"width":0},{"testAttemptIndex":1,"size":377109,"takenAt":"2023-09-09T13:16:08.927Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"b.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":212,"testId":"r0","name":"screenshot","screenshotId":"l-AfnNJHwvoUAYLvZ2Kpq","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/TUfJcXIHm260.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=O1xc7BHTxvqm4Jb2htTRPidRkgR3ZqBvo8ntGcBlfCqQ2azZpFU4R6xbvD69gyzn1hOgDtgfUKEmGY6nn0WfZ5~oY96JWp5LEfjFbTWgKt0HJI2HlPCIUCY72mXvNZXT2k2dLSRLIl-k0pSQ3Yg~TvymzgzutoiPBJWZLKP-SZrstCebIgQychxWjUJsor6OyM~R0karI-7RHdcCIPlFIdgYSgrZ3h0j6TRbaIlo5dEth1lpBJzmESJleFC-rXzzR~0Ey3iH0vhETlp4XSlnffKzD9MS6P6fpFD2xKDQFCRHpL9AuvNyfKqIP5Hbd9sTYlPyxTzQRpHEeD9KJh6TDA__","height":0,"width":0},{"testAttemptIndex":2,"size":376387,"takenAt":"2023-09-09T13:16:13.526Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"b.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":212,"testId":"r0","name":"screenshot","screenshotId":"TS6pSw38W-AUJoX6_3Dt1","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/ZaN8YdXL32XN.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=PaokSdQRV8O1sULTNJZSBf-i2xzyeAlMckTurwUAz-ziFSQXH4uHibGQVIxb2gX6c7yFPgqK0mWTUn~tzc42EBCXVIhnhbDxogS0B4oq49IR~M-dR1N-Y1RDx3Tdxo70izaUES-~iJPj-x1IF97kWEhFnnRpjDKpwR-SJC5Jg0Cf6Qu3vcLxW9~xpPOWHAMByILQg7g0w8jNMMsw6xyIG38Pz0orWHUm9Wq7sWoqy~JaBD55MQWDF1krul1MIQL9TDnEQ3DsDPmWLPE-fs42fOIdljA6Quol7bFmULN5EYIkA-mE7ZpoUg-1mtscT4iXn1P2ZBp04OoVVTJaG2200g__","height":0,"width":0},{"testAttemptIndex":0,"size":380678,"takenAt":"2023-09-09T13:16:18.345Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"b.spec.js","testFailure":true,"scaled":true,"blackout":[],"duration":208,"testId":"r2","name":"screenshot","screenshotId":"jZVwYU6lu6KMEmwOhHj0y","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/0xdPV4FdOgfA.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=KGJTP9MazrpD-DVauoXC13O-kerEQpKUcGoAdNzUy0EfKDNdKv19Fbmhu-3jodaBkuBFfM1DZ948d1az-Nf-D60kWdTtsXCF1wVgz~Y6qTPyMklKEraJAOTGdW3rq-uOH9czEY5revFPpMPnvLrrLM6uS2uyycYF312xSYeqhCzpsrD113NLXSKuz72usBhCZo7pKf0YeqIufo5BM8f0mnaFQfouhZ8Lzh5sIcdZYEV1affq1c17WecK1iC7NhLEdkj1pY4AI4D1DTJIroTQNZ7CmdB2EipaCfI5bnrP0AkHvHxSuN-2Z7yQx0wTR8-~YigVSWdNxMUIYk0p-jlveA__","height":0,"width":0}],"exception":null,"flaky":1}},{"groupId":"run-api-smoke-2023-09-09T13:15:19.184Z","spec":"cypress/e2e/c.spec.js","instanceId":"EZKtPsgmVMze","claimedAt":"2023-09-09T13:15:22.999Z","completedAt":"2023-09-09T13:15:53.983Z","machineId":"AWFuj0716IyK","worker":null,"results":{"videoUrl":"https://fs.currents.dev/64af8eee5411be7416b22d5f/EZKtPsgmVMze_oiq63t1gBvQA.mp4?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=HcZcdEJ4eseAQy55V8jslDtI47AAALnaChvxBp-9RP7tIcP2eHc4Ce0S0F3mp2g1Xc3zQzOCOn7zfgDVffjNE2WEdaTOP8UnYQB-hteoxOF8nAnzXXxOhcD5BDP4YE2DDCb7yu1QsolhVc2tzQGckyx0iCEGtdTaP4whFMTI-xKye580hcs9LVPHRY2HP4Z~SCSCb9YfybcVBrKxtjuOg3kQDAW7VPX21kR-k4t9IaAR9ZpBgxUQIdRpLfKazqMCUjMFEbDbJKfd2Mj3MRhIn0CSeVA9rdIdZto2lvynN4xOSapiR91H2xAXacdcGqneVIxTG34ovVHeE8q3j~~u8A__","stats":{"duration":61,"endedAt":"2023-09-09T13:15:52.222Z","startedAt":"2023-09-09T13:15:52.161Z","failures":0,"passes":0,"pending":1,"skipped":0,"suites":1,"tests":1,"wallClockDuration":61,"wallClockStartedAt":"2023-09-09T13:15:52.161Z","wallClockEndedAt":"2023-09-09T13:15:52.222Z"},"screenshots":[],"exception":null,"flaky":0}},{"groupId":"run-api-smoke-2023-09-09T13:15:19.184Z","spec":"cypress/e2e/d.spec.js","instanceId":"zf5tHsMfNljD","claimedAt":"2023-09-09T13:15:22.993Z","completedAt":"2023-09-09T13:15:51.393Z","machineId":"AWFuj0716IyK","worker":null,"results":{"videoUrl":"https://fs.currents.dev/64af8eee5411be7416b22d5f/zf5tHsMfNljD_vHmL2dIylK4P.mp4?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=OQNH57iWR6mLYfcd6Udk1q4S~IXo-RqawVc8QjCFycAFbhDxf535RCkMYd4RGMNcZbuZ9wzxFZwbg9PLaY3DS~S0~qXGqsSGVKd9WBrohH6MM56hNOZ4rPtBQ~DP-v0a8Asl~YbYDxMFS4s2IOZ73j~u6E2cehwCiJfv5vPlIzn6APT5vr0dxqioeOdrgjOEungbL2Cybuc0up0vJIHHke5qr~BBm~p3bSDboP9eJPYZQ4WTizfzoo3ABKMKXyIfOxezUYGBpCF4nnEKFIyHTsvPjGUEDf0XFdDXFBjywwFf8v5escZ12kkN5i0nH9c8hs9ZFPYur00p1hHfJduQUg__","stats":{"duration":1379,"endedAt":"2023-09-09T13:15:49.247Z","startedAt":"2023-09-09T13:15:47.868Z","failures":0,"passes":2,"pending":0,"skipped":0,"suites":1,"tests":2,"wallClockDuration":1379,"wallClockStartedAt":"2023-09-09T13:15:47.868Z","wallClockEndedAt":"2023-09-09T13:15:49.247Z"},"screenshots":[{"testAttemptIndex":0,"size":234576,"takenAt":"2023-09-09T13:15:48.330Z","dimensions":{"width":2000,"height":1320},"multipart":true,"pixelRatio":2,"name":"internal-assert-screenshot","specName":"d.spec.js","scaled":false,"blackout":[],"duration":704,"testId":"r0","screenshotId":"G8tnW2c46IONgreAy5UIu","screenshotURL":"https://fs.currents.dev/64af8eee5411be7416b22d5f/BjdDzqzMqS2h.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=iHg~fF-Y84PKoqTVu~98PqeJ-X5dqEhtDnOQDA8KmawjYJn9Pn92aD8GILEMOkiTcVeG2s-0iw2UZzQTbuEsxdlh~zPYmUAQPR9E~RAbDsjKMJozR9IcTqSPRm8wN7tYmsR6nLZRzyQdzeiWrKC21dx89B2y63mKO7RGYU1zu8GGTl0lUPL0AeaRz6vXTSnmBoB6lHPrjhSh7Y3ve9pkFcZRu5ZpszBSnjLi061FSYWO5NXLG1E8wIJXpnYugX39RqbnpTomdD0bN~pPUOj6KepLMH8oea~9We2iTOXxiT~RKKch7-X4IXmi6qQjYAk4x-b~L4ckaXdhhhVIn2o0ag__","height":0,"width":0}],"exception":null,"flaky":0}}],"completionState":"COMPLETE","status":"FAILED"}} \ No newline at end of file diff --git a/e2e/cypress-13-demo/data-references/ccy-1.10-cypress-13/cypress-cloud-output-reference.json b/e2e/cypress-13-demo/data-references/ccy-1.10-cypress-13/cypress-cloud-output-reference.json index de6fc4a..6180276 100644 --- a/e2e/cypress-13-demo/data-references/ccy-1.10-cypress-13/cypress-cloud-output-reference.json +++ b/e2e/cypress-13-demo/data-references/ccy-1.10-cypress-13/cypress-cloud-output-reference.json @@ -1 +1 @@ -{"totalDuration":13807,"totalSuites":2,"totalPending":0,"totalFailed":3,"totalSkipped":0,"totalPassed":1,"totalTests":4,"runs":[{"stats":{"duration":1908,"endedAt":"2023-09-07T15:45:07.004Z","startedAt":"2023-09-07T15:45:05.096Z","failures":1,"passes":0,"pending":0,"skipped":0,"suites":1,"tests":1},"reporter":"spec","reporterStats":{"suites":1,"tests":1,"passes":0,"pending":0,"failures":1,"start":"2023-09-07T15:45:05.099Z","end":"2023-09-07T15:45:07.006Z","duration":1907},"spec":{"absolute":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","fileExtension":".js","fileName":"retries","name":"retries.spec.js","relative":"cypress/e2e/retries.spec.js"},"error":null,"video":null,"shouldUploadVideo":true,"tests":[{"attempts":[{"state":"failed","error":{"name":"Error","message":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","stack":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","codeFrame":{"line":9,"column":13,"originalFile":"cypress/e2e/retries.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/retries.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","frame":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","language":"js"}},"timings":{"lifecycle":14,"before each":[{"hookId":"h1","fnDuration":19,"afterFnDuration":1},{"hookId":"h2","fnDuration":415,"afterFnDuration":1}],"test":{"fnDuration":5,"afterFnDuration":240},"after each":[{"hookId":"h4","fnDuration":13,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-07T15:45:05.114Z","wallClockDuration":695,"videoTimestamp":18,"startedAt":"2023-09-07T15:45:05.114Z","duration":695,"screenshots":[{"testAttemptIndex":0,"size":331358,"takenAt":"2023-09-07T15:45:05.572Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"retries.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed).png","scaled":true,"blackout":[],"duration":236,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]},{"state":"failed","error":{"name":"Error","message":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","stack":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","codeFrame":{"line":9,"column":13,"originalFile":"cypress/e2e/retries.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/retries.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","frame":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","language":"js"}},"timings":{"lifecycle":28,"before each":[{"hookId":"h1","fnDuration":19,"afterFnDuration":1},{"hookId":"h2","fnDuration":57,"afterFnDuration":0}],"test":{"fnDuration":5,"afterFnDuration":222},"after each":[{"hookId":"h4","fnDuration":12,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-07T15:45:05.864Z","wallClockDuration":335,"videoTimestamp":768,"startedAt":"2023-09-07T15:45:05.864Z","duration":335,"screenshots":[{"testAttemptIndex":1,"size":379236,"takenAt":"2023-09-07T15:45:05.978Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"retries.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 2).png","scaled":true,"blackout":[],"duration":220,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]},{"state":"failed","error":{"name":"Error","message":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","stack":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","codeFrame":{"line":9,"column":13,"originalFile":"cypress/e2e/retries.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/retries.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","frame":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","language":"js"}},"timings":{"lifecycle":24,"before each":[{"hookId":"h1","fnDuration":10,"afterFnDuration":0},{"hookId":"h2","fnDuration":54,"afterFnDuration":0}],"test":{"fnDuration":4,"afterFnDuration":235},"after each":[{"hookId":"h4","fnDuration":15,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-07T15:45:06.247Z","wallClockDuration":331,"videoTimestamp":1151,"startedAt":"2023-09-07T15:45:06.247Z","duration":331,"screenshots":[{"testAttemptIndex":2,"size":378475,"takenAt":"2023-09-07T15:45:06.347Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"retries.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 3).png","scaled":true,"blackout":[],"duration":233,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]},{"state":"failed","error":{"name":"Error","message":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","stack":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","codeFrame":{"line":9,"column":13,"originalFile":"cypress/e2e/retries.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/retries.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","frame":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","language":"js"}},"timings":{"lifecycle":26,"before each":[{"hookId":"h1","fnDuration":14,"afterFnDuration":0},{"hookId":"h2","fnDuration":50,"afterFnDuration":0}],"test":{"fnDuration":4,"afterFnDuration":212},"after each":[{"hookId":"h4","fnDuration":12,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-07T15:45:06.637Z","wallClockDuration":309,"videoTimestamp":1541,"startedAt":"2023-09-07T15:45:06.637Z","duration":309,"screenshots":[{"testAttemptIndex":3,"size":377835,"takenAt":"2023-09-07T15:45:06.735Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"retries.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 4).png","scaled":true,"blackout":[],"duration":210,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]}],"displayError":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","duration":1830,"state":"failed","title":["Retries","Runs a test with retries"],"testId":"r3"}]},{"stats":{"duration":11899,"endedAt":"2023-09-07T15:45:19.927Z","startedAt":"2023-09-07T15:45:08.028Z","failures":2,"passes":1,"pending":0,"skipped":0,"suites":1,"tests":3},"reporter":"spec","reporterStats":{"suites":1,"tests":3,"passes":1,"pending":0,"failures":2,"start":"2023-09-07T15:45:08.032Z","end":"2023-09-07T15:45:19.929Z","duration":11897},"spec":{"absolute":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","fileExtension":".js","fileName":"xxx","name":"xxx.spec.js","relative":"cypress/e2e/xxx.spec.js"},"error":null,"video":null,"shouldUploadVideo":true,"tests":[{"attempts":[{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: Expected to find content: 'Clear completed X' within the element: but never did.","stack":"AssertionError: Timed out retrying after 4000ms: Expected to find content: 'Clear completed X' within the element: but never did.\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/xxx.spec.js:17:33)","codeFrame":{"line":17,"column":34,"originalFile":"cypress/e2e/xxx.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","frame":" 15 | function () {\n 16 | cy.get(\"@todos\").eq(0).find(\".toggle\").check();\n> 17 | cy.get(\".clear-completed\").contains(\"Clear completed X\");\n | ^\n 18 | }\n 19 | );\n 20 | ","language":"js"}},"timings":{"lifecycle":31,"before each":[{"hookId":"h1","fnDuration":12,"afterFnDuration":0},{"hookId":"h2","fnDuration":134,"afterFnDuration":0},{"hookId":"h6","fnDuration":821,"afterFnDuration":0}],"test":{"fnDuration":4093,"afterFnDuration":211},"after each":[{"hookId":"h4","fnDuration":13,"afterFnDuration":1}]},"wallClockStartedAt":"2023-09-07T15:45:08.032Z","wallClockDuration":5305,"videoTimestamp":4,"startedAt":"2023-09-07T15:45:08.032Z","duration":5305,"screenshots":[{"testAttemptIndex":0,"size":418323,"takenAt":"2023-09-07T15:45:13.129Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"xxx.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/xxx.spec.js/Clear completed button -- should display the correct text (failed).png","scaled":true,"blackout":[],"duration":208,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]}],"displayError":"AssertionError: Timed out retrying after 4000ms: Expected to find content: 'Clear completed X' within the element: but never did.\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/xxx.spec.js:17:33)","duration":5343,"state":"failed","title":["Clear completed button","should display the correct text"],"testId":"r3"},{"attempts":[{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: expected '
  • ' to contain 'item A'","stack":"AssertionError: Timed out retrying after 4000ms: expected '
  • ' to contain 'item A'\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/xxx.spec.js:31:36)","codeFrame":{"line":31,"column":37,"originalFile":"cypress/e2e/xxx.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","frame":" 29 | cy.get(\".clear-completed\").click();\n 30 | cy.get(\"@todos\").should(\"have.length\", 2);\n> 31 | cy.get(\".todo-list li\").eq(0).should(\"contain\", TODO_ITEM_ONE);\n | ^\n 32 | cy.get(\".todo-list li\").eq(1).should(\"contain\", \"XXXX\");\n 33 | }\n 34 | );","language":"js"}},"timings":{"lifecycle":17,"before each":[{"hookId":"h1","fnDuration":18,"afterFnDuration":0},{"hookId":"h2","fnDuration":49,"afterFnDuration":0},{"hookId":"h6","fnDuration":865,"afterFnDuration":0}],"test":{"fnDuration":4148,"afterFnDuration":182},"after each":[{"hookId":"h4","fnDuration":15,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-07T15:45:13.398Z","wallClockDuration":5282,"videoTimestamp":5370,"startedAt":"2023-09-07T15:45:13.398Z","duration":5282,"screenshots":[{"testAttemptIndex":0,"size":388041,"takenAt":"2023-09-07T15:45:18.500Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"xxx.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/xxx.spec.js/Clear completed button -- should remove completed items when clicked (failed).png","scaled":true,"blackout":[],"duration":179,"testId":"r4","height":1440,"width":2560,"name":"screenshot"}]}],"displayError":"AssertionError: Timed out retrying after 4000ms: expected '
  • ' to contain 'item A'\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/xxx.spec.js:31:36)","duration":5329,"state":"failed","title":["Clear completed button","should remove completed items when clicked"],"testId":"r4"},{"attempts":[{"state":"passed","error":null,"timings":{"lifecycle":26,"before each":[{"hookId":"h1","fnDuration":10,"afterFnDuration":0},{"hookId":"h2","fnDuration":91,"afterFnDuration":0},{"hookId":"h6","fnDuration":867,"afterFnDuration":0}],"test":{"fnDuration":152,"afterFnDuration":0},"after each":[{"hookId":"h4","fnDuration":12,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-07T15:45:18.738Z","wallClockDuration":1148,"videoTimestamp":10710,"startedAt":"2023-09-07T15:45:18.738Z","duration":1148,"screenshots":[]}],"displayError":null,"duration":1188,"state":"passed","title":["Clear completed button","should be hidden when there are no items that are completed"],"testId":"r5"}]}],"startedTestsAt":"2023-09-07T15:45:05.096Z","endedTestsAt":"2023-09-07T15:45:19.927Z","config":{"additionalIgnorePattern":[],"animationDistanceThreshold":5,"arch":"arm64","autoOpen":false,"baseUrl":"https://todomvc.com/examples/vanillajs","blockHosts":null,"browsers":[{"name":"chrome","family":"chromium","channel":"stable","displayName":"Chrome","version":"116.0.5845.179","path":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","minSupportedVersion":64,"majorVersion":"116"},{"name":"edge","family":"chromium","channel":"stable","displayName":"Edge","version":"116.0.1938.69","path":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","minSupportedVersion":79,"majorVersion":"116"},{"name":"electron","channel":"stable","family":"chromium","displayName":"Electron","version":"106.0.5249.51","path":"","majorVersion":106}],"chromeWebSecurity":true,"clientCertificates":[],"clientRoute":"/__/","configFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress.config.ts","cypressBinaryRoot":"/Users/miguelangarano/Library/Caches/Cypress/13.1.0/Cypress.app/Contents/Resources/app","cypressEnv":"production","defaultCommandTimeout":4000,"devServerPublicPathRoute":"/__cypress/src","downloadsFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/downloads","env":{"currents_temp_file":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-84752-d4apSw3XIvZ1","currents_debug_enabled":false},"excludeSpecPattern":"*.hot-update.js","execTimeout":60000,"experimentalCspAllowList":false,"experimentalFetchPolyfill":false,"experimentalInteractiveRunEvents":false,"experimentalMemoryManagement":false,"experimentalModifyObstructiveThirdPartyCode":false,"experimentalOriginDependencies":false,"experimentalRunAllSpecs":false,"experimentalSingleTabRunMode":false,"experimentalSkipDomainInjection":null,"experimentalSourceRewriting":false,"experimentalStudio":false,"experimentalWebKitSupport":false,"fileServerFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","fixturesFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/fixtures","hideCommandLog":false,"hideRunnerUi":false,"hosts":null,"includeShadowDom":false,"isInteractive":true,"isTextTerminal":true,"keystrokeDelay":0,"modifyObstructiveCode":true,"morgan":false,"namespace":"__cypress","numTestsKeptInMemory":0,"pageLoadTimeout":60000,"platform":"darwin","port":null,"projectId":null,"projectName":"cypress-13-demo","projectRoot":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","protocolEnabled":false,"rawJson":{"e2e":{"baseUrl":"https://todomvc.com/examples/vanillajs","supportFile":"cypress/support/e2e.ts","specPattern":"cypress/*/**/*.spec.js","setupNodeEvents":"[Function setupNodeEvents]"},"component":{"specPattern":["pages/__tests__/*.spec.tsx"],"setupNodeEvents":"[Function setupNodeEvents]","devServer":{"framework":"next","bundler":"webpack"}},"baseUrl":"https://todomvc.com/examples/vanillajs","supportFile":"cypress/support/e2e.ts","specPattern":"cypress/*/**/*.spec.js","setupNodeEvents":"[Function setupNodeEvents]","envFile":{},"projectRoot":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","projectName":"cypress-13-demo","repoRoot":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13"},"redirectionLimit":20,"repoRoot":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","report":true,"reporter":"spec","reporterOptions":null,"reporterRoute":"/__cypress/reporter","requestTimeout":5000,"resolved":{"animationDistanceThreshold":{"value":5,"from":"default"},"arch":{"value":"arm64","from":"default"},"baseUrl":{"value":"https://todomvc.com/examples/vanillajs","from":"config"},"blockHosts":{"value":null,"from":"default"},"chromeWebSecurity":{"value":true,"from":"default"},"clientCertificates":{"value":[],"from":"default"},"defaultCommandTimeout":{"value":4000,"from":"default"},"downloadsFolder":{"value":"cypress/downloads","from":"default"},"env":{"currents_temp_file":{"value":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-84752-d4apSw3XIvZ1","from":"cli"},"currents_debug_enabled":{"value":false,"from":"cli"}},"execTimeout":{"value":60000,"from":"default"},"experimentalCspAllowList":{"value":false,"from":"default"},"experimentalFetchPolyfill":{"value":false,"from":"default"},"experimentalInteractiveRunEvents":{"value":false,"from":"default"},"experimentalRunAllSpecs":{"value":false,"from":"default"},"experimentalMemoryManagement":{"value":false,"from":"default"},"experimentalModifyObstructiveThirdPartyCode":{"value":false,"from":"default"},"experimentalSkipDomainInjection":{"value":null,"from":"default"},"experimentalOriginDependencies":{"value":false,"from":"default"},"experimentalSourceRewriting":{"value":false,"from":"default"},"experimentalSingleTabRunMode":{"value":false,"from":"default"},"experimentalStudio":{"value":false,"from":"default"},"experimentalWebKitSupport":{"value":false,"from":"default"},"fileServerFolder":{"value":"","from":"default"},"fixturesFolder":{"value":"cypress/fixtures","from":"default"},"excludeSpecPattern":{"value":"*.hot-update.js","from":"default"},"includeShadowDom":{"value":false,"from":"default"},"keystrokeDelay":{"value":0,"from":"default"},"modifyObstructiveCode":{"value":true,"from":"default"},"numTestsKeptInMemory":{"value":0,"from":"config"},"platform":{"value":"darwin","from":"default"},"pageLoadTimeout":{"value":60000,"from":"default"},"port":{"value":null,"from":"default"},"projectId":{"value":null,"from":"default"},"redirectionLimit":{"value":20,"from":"default"},"reporter":{"value":"spec","from":"default"},"reporterOptions":{"value":null,"from":"default"},"requestTimeout":{"value":5000,"from":"default"},"resolvedNodePath":{"value":null,"from":"default"},"resolvedNodeVersion":{"value":null,"from":"default"},"responseTimeout":{"value":30000,"from":"default"},"retries":{"value":{"runMode":0,"openMode":0},"from":"default"},"screenshotOnRunFailure":{"value":true,"from":"default"},"screenshotsFolder":{"value":"cypress/screenshots","from":"default"},"slowTestThreshold":{"value":10000,"from":"default"},"scrollBehavior":{"value":"top","from":"default"},"supportFile":{"value":"cypress/support/e2e.ts","from":"config"},"supportFolder":{"value":false,"from":"default"},"taskTimeout":{"value":60000,"from":"default"},"testIsolation":{"value":true,"from":"default"},"trashAssetsBeforeRuns":{"value":true,"from":"default"},"userAgent":{"value":null,"from":"default"},"video":{"value":false,"from":"default"},"videoCompression":{"value":false,"from":"default"},"videosFolder":{"value":"cypress/videos","from":"default"},"viewportHeight":{"value":660,"from":"default"},"viewportWidth":{"value":1000,"from":"default"},"waitForAnimations":{"value":true,"from":"default"},"watchForFileChanges":{"value":false,"from":"config"},"specPattern":{"value":"cypress/*/**/*.spec.js","from":"config"},"browsers":{"value":[{"name":"chrome","family":"chromium","channel":"stable","displayName":"Chrome","version":"116.0.5845.179","path":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","minSupportedVersion":64,"majorVersion":"116"},{"name":"edge","family":"chromium","channel":"stable","displayName":"Edge","version":"116.0.1938.69","path":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","minSupportedVersion":79,"majorVersion":"116"},{"name":"electron","channel":"stable","family":"chromium","displayName":"Electron","version":"106.0.5249.51","path":"","majorVersion":106}],"from":"runtime"},"hosts":{"value":null,"from":"default"},"isInteractive":{"value":true,"from":"default"}},"resolvedNodePath":"/Users/miguelangarano/.nvm/versions/node/v18.14.2/bin/node","resolvedNodeVersion":"18.14.2","responseTimeout":30000,"retries":{"runMode":0,"openMode":0},"screenshotOnRunFailure":true,"screenshotsFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots","scrollBehavior":"top","setupNodeEvents":"[Function setupNodeEvents]","slowTestThreshold":10000,"socketId":"4tp88ruxjj","socketIoCookie":"__socket","socketIoRoute":"/__socket","specPattern":"cypress/*/**/*.spec.js","supportFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/support/e2e.ts","supportFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/support","taskTimeout":60000,"testIsolation":true,"trashAssetsBeforeRuns":true,"userAgent":null,"version":"13.1.0","video":false,"videoCompression":false,"videosFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos","viewportHeight":660,"viewportWidth":1000,"waitForAnimations":true,"watchForFileChanges":false,"testingType":"e2e"},"status":"finished","runUrl":"https://app.currents.dev/run/6c996f69397aa4f2"} \ No newline at end of file +{"totalDuration":36314,"totalSuites":4,"totalPending":1,"totalFailed":2,"totalSkipped":0,"totalPassed":4,"totalTests":7,"runs":[{"stats":{"duration":14870,"endedAt":"2023-09-09T13:15:42.469Z","startedAt":"2023-09-09T13:15:27.599Z","failures":1,"passes":0,"pending":0,"skipped":0,"suites":1,"tests":1},"reporter":"spec","reporterStats":{"suites":1,"tests":1,"passes":0,"pending":0,"failures":1,"start":"2023-09-09T13:15:27.601Z","end":"2023-09-09T13:15:42.481Z","duration":14880},"spec":{"fileExtension":".js","baseName":"a.spec.js","fileName":"a","specFileExtension":".spec.js","relativeToCommonRoot":"a.spec.js","specType":"integration","name":"cypress/e2e/a.spec.js","relative":"cypress/e2e/a.spec.js","absolute":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/a.spec.js"},"error":null,"video":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos/a.spec.js.mp4","shouldUploadVideo":true,"hooks":[{"hookId":"h1","hookName":"before each","title":["\"before each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}"},{"hookId":"h2","hookName":"before each","title":["\"before each\" hook"],"body":"function () {\n cy.visit(\"/\");\n}"},{"hookId":"h4","hookName":"after each","title":["\"after each\" hook"],"body":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }"},{"hookId":"h5","hookName":"after each","title":["\"after each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}"},{"hookId":"h3","hookName":"after all","title":["\"after all\" hook"],"body":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }"}],"tests":[{"testId":"r3","title":["Failing test with 2 attempts","should try 2 times"],"state":"failed","body":"() => {\n cy.wrap(false).should('be.true');\n }","displayError":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/a.spec.js:5:19)","attempts":[{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: expected false to be true","stack":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/a.spec.js:5:19)","codeFrame":{"line":5,"column":20,"originalFile":"cypress/e2e/a.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/a.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/a.spec.js","frame":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","language":"js"}},"timings":{"lifecycle":35,"before each":[{"hookId":"h1","fnDuration":18,"afterFnDuration":0},{"hookId":"h2","fnDuration":1380,"afterFnDuration":0}],"test":{"fnDuration":4009,"afterFnDuration":311},"after each":[{"hookId":"h4","fnDuration":17,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:15:27.604Z","wallClockDuration":5755,"videoTimestamp":null,"startedAt":"2023-09-09T13:15:27.604Z","duration":5755,"screenshots":[{"testAttemptIndex":0,"size":349117,"takenAt":"2023-09-09T13:15:33.051Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"a.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed).png","scaled":true,"blackout":[],"duration":303,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]},{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: expected false to be true","stack":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/a.spec.js:5:19)","codeFrame":{"line":5,"column":20,"originalFile":"cypress/e2e/a.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/a.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/a.spec.js","frame":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","language":"js"}},"timings":{"lifecycle":29,"before each":[{"hookId":"h1","fnDuration":8,"afterFnDuration":0},{"hookId":"h2","fnDuration":116,"afterFnDuration":0}],"test":{"fnDuration":4005,"afterFnDuration":210},"after each":[{"hookId":"h4","fnDuration":17,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:15:33.417Z","wallClockDuration":4369,"videoTimestamp":null,"startedAt":"2023-09-09T13:15:33.417Z","duration":4369,"screenshots":[{"testAttemptIndex":1,"size":361908,"takenAt":"2023-09-09T13:15:37.578Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"a.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed) (attempt 2).png","scaled":true,"blackout":[],"duration":206,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]},{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: expected false to be true","stack":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/a.spec.js:5:19)","codeFrame":{"line":5,"column":20,"originalFile":"cypress/e2e/a.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/a.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/a.spec.js","frame":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","language":"js"}},"timings":{"lifecycle":44,"before each":[{"hookId":"h1","fnDuration":8,"afterFnDuration":0},{"hookId":"h2","fnDuration":323,"afterFnDuration":0}],"test":{"fnDuration":3999,"afterFnDuration":209},"after each":[{"hookId":"h4","fnDuration":13,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:15:37.833Z","wallClockDuration":4585,"videoTimestamp":null,"startedAt":"2023-09-09T13:15:37.833Z","duration":4585,"screenshots":[{"testAttemptIndex":2,"size":362007,"takenAt":"2023-09-09T13:15:42.210Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"a.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed) (attempt 3).png","scaled":true,"blackout":[],"duration":207,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]}]}]},{"stats":{"duration":1379,"endedAt":"2023-09-09T13:15:49.247Z","startedAt":"2023-09-09T13:15:47.868Z","failures":0,"passes":2,"pending":0,"skipped":0,"suites":1,"tests":2},"reporter":"spec","reporterStats":{"suites":1,"tests":2,"passes":2,"pending":0,"failures":0,"start":"2023-09-09T13:15:47.870Z","end":"2023-09-09T13:15:49.249Z","duration":1379},"spec":{"fileExtension":".js","baseName":"d.spec.js","fileName":"d","specFileExtension":".spec.js","relativeToCommonRoot":"d.spec.js","specType":"integration","name":"cypress/e2e/d.spec.js","relative":"cypress/e2e/d.spec.js","absolute":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/d.spec.js"},"error":null,"video":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos/d.spec.js.mp4","shouldUploadVideo":true,"hooks":[{"hookId":"h1","hookName":"before each","title":["\"before each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}"},{"hookId":"h2","hookName":"before each","title":["\"before each\" hook"],"body":"function () {\n cy.visit(\"/\");\n}"},{"hookId":"h4","hookName":"after each","title":["\"after each\" hook"],"body":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }"},{"hookId":"h5","hookName":"after each","title":["\"after each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}"},{"hookId":"h3","hookName":"after all","title":["\"after all\" hook"],"body":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }"}],"tests":[{"testId":"r3","title":["Passed test with screenshot, passed test with no screenshots","should assert and take a screenshot"],"state":"passed","body":"() => {\n // Assert that true is true\n cy.wrap(true).should('be.true');\n\n // Take a screenshot\n cy.screenshot('internal-assert-screenshot');\n }","displayError":null,"attempts":[{"state":"passed","error":null,"timings":{"lifecycle":32,"before each":[{"hookId":"h1","fnDuration":12,"afterFnDuration":1},{"hookId":"h2","fnDuration":391,"afterFnDuration":0}],"test":{"fnDuration":712,"afterFnDuration":0},"after each":[{"hookId":"h4","fnDuration":13,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:15:47.880Z","wallClockDuration":1149,"videoTimestamp":null,"startedAt":"2023-09-09T13:15:47.880Z","duration":1149,"screenshots":[{"testAttemptIndex":0,"size":234576,"takenAt":"2023-09-09T13:15:48.330Z","dimensions":{"width":2000,"height":1320},"multipart":true,"pixelRatio":2,"name":"internal-assert-screenshot","specName":"d.spec.js","path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/d.spec.js/internal-assert-screenshot.png","scaled":false,"blackout":[],"duration":704,"testId":"r3","height":1320,"width":2000}]}]},{"testId":"r4","title":["Passed test with screenshot, passed test with no screenshots","should assert that true is true"],"state":"passed","body":"() => {\n cy.wrap(true).should('be.true');\n }","displayError":null,"attempts":[{"state":"passed","error":null,"timings":{"lifecycle":17,"before each":[{"hookId":"h1","fnDuration":7,"afterFnDuration":0},{"hookId":"h2","fnDuration":134,"afterFnDuration":0}],"test":{"fnDuration":2,"afterFnDuration":0},"after each":[{"hookId":"h4","fnDuration":11,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:15:49.057Z","wallClockDuration":161,"videoTimestamp":null,"startedAt":"2023-09-09T13:15:49.057Z","duration":161,"screenshots":[]}]}]},{"stats":{"duration":61,"endedAt":"2023-09-09T13:15:52.222Z","startedAt":"2023-09-09T13:15:52.161Z","failures":0,"passes":0,"pending":1,"skipped":0,"suites":1,"tests":1},"reporter":"spec","reporterStats":{"suites":1,"tests":1,"passes":0,"pending":1,"failures":0,"start":"2023-09-09T13:15:52.163Z","end":"2023-09-09T13:15:52.225Z","duration":62},"spec":{"fileExtension":".js","baseName":"c.spec.js","fileName":"c","specFileExtension":".spec.js","relativeToCommonRoot":"c.spec.js","specType":"integration","name":"cypress/e2e/c.spec.js","relative":"cypress/e2e/c.spec.js","absolute":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/c.spec.js"},"error":null,"video":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos/c.spec.js.mp4","shouldUploadVideo":true,"hooks":[{"hookId":"h3","hookName":"after all","title":["\"after all\" hook"],"body":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }"}],"tests":[{"testId":"r0}","title":["Ignored test","should be a skipped test"],"state":"pending","body":"() => {\n cy.wrap(false).should('be.true');\n }","displayError":null,"attempts":[]}]},{"stats":{"duration":20004,"endedAt":"2023-09-09T13:16:19.050Z","startedAt":"2023-09-09T13:15:59.046Z","failures":1,"passes":2,"pending":0,"skipped":0,"suites":1,"tests":3},"reporter":"spec","reporterStats":{"suites":1,"tests":3,"passes":2,"pending":0,"failures":1,"start":"2023-09-09T13:15:59.048Z","end":"2023-09-09T13:16:19.054Z","duration":20006},"spec":{"fileExtension":".js","baseName":"b.spec.js","fileName":"b","specFileExtension":".spec.js","relativeToCommonRoot":"b.spec.js","specType":"integration","name":"cypress/e2e/b.spec.js","relative":"cypress/e2e/b.spec.js","absolute":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js"},"error":null,"video":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos/b.spec.js.mp4","shouldUploadVideo":true,"hooks":[{"hookId":"h1","hookName":"before each","title":["\"before each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}"},{"hookId":"h2","hookName":"before each","title":["\"before each\" hook"],"body":"function () {\n cy.visit(\"/\");\n}"},{"hookId":"h4","hookName":"after each","title":["\"after each\" hook"],"body":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }"},{"hookId":"h5","hookName":"after each","title":["\"after each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}"},{"hookId":"h3","hookName":"after all","title":["\"after all\" hook"],"body":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }"}],"tests":[{"testId":"r3","title":["Failing test with 2 attempts, passed test and flaky test with 2 attempts","should try 2 times"],"state":"failed","body":"() => {\n cy.wrap(false).should('be.true');\n }","displayError":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:6:19)","attempts":[{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: expected false to be true","stack":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:6:19)","codeFrame":{"line":6,"column":20,"originalFile":"cypress/e2e/b.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/b.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","frame":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","language":"js"}},"timings":{"lifecycle":32,"before each":[{"hookId":"h1","fnDuration":17,"afterFnDuration":0},{"hookId":"h2","fnDuration":1310,"afterFnDuration":0}],"test":{"fnDuration":4019,"afterFnDuration":275},"after each":[{"hookId":"h4","fnDuration":22,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:15:59.052Z","wallClockDuration":5654,"videoTimestamp":null,"startedAt":"2023-09-09T13:15:59.052Z","duration":5654,"screenshots":[{"testAttemptIndex":0,"size":374371,"takenAt":"2023-09-09T13:16:04.433Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"b.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed).png","scaled":true,"blackout":[],"duration":256,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]},{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: expected false to be true","stack":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:6:19)","codeFrame":{"line":6,"column":20,"originalFile":"cypress/e2e/b.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/b.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","frame":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","language":"js"}},"timings":{"lifecycle":28,"before each":[{"hookId":"h1","fnDuration":11,"afterFnDuration":0},{"hookId":"h2","fnDuration":118,"afterFnDuration":0}],"test":{"fnDuration":3992,"afterFnDuration":215},"after each":[{"hookId":"h4","fnDuration":12,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:16:04.774Z","wallClockDuration":4366,"videoTimestamp":null,"startedAt":"2023-09-09T13:16:04.774Z","duration":4366,"screenshots":[{"testAttemptIndex":1,"size":377109,"takenAt":"2023-09-09T13:16:08.927Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"b.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed) (attempt 2).png","scaled":true,"blackout":[],"duration":212,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]},{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: expected false to be true","stack":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:6:19)","codeFrame":{"line":6,"column":20,"originalFile":"cypress/e2e/b.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/b.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","frame":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","language":"js"}},"timings":{"lifecycle":44,"before each":[{"hookId":"h1","fnDuration":11,"afterFnDuration":0},{"hookId":"h2","fnDuration":294,"afterFnDuration":0}],"test":{"fnDuration":3988,"afterFnDuration":216},"after each":[{"hookId":"h4","fnDuration":14,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:16:09.187Z","wallClockDuration":4554,"videoTimestamp":null,"startedAt":"2023-09-09T13:16:09.187Z","duration":4554,"screenshots":[{"testAttemptIndex":2,"size":376387,"takenAt":"2023-09-09T13:16:13.526Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"b.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed) (attempt 3).png","scaled":true,"blackout":[],"duration":212,"testId":"r3","height":1440,"width":2560,"name":"screenshot"}]}]},{"testId":"r4","title":["Failing test with 2 attempts, passed test and flaky test with 2 attempts","should assert that true is true"],"state":"passed","body":"() => {\n cy.wrap(true).should('be.true');\n }","displayError":null,"attempts":[{"state":"passed","error":null,"timings":{"lifecycle":42,"before each":[{"hookId":"h1","fnDuration":11,"afterFnDuration":0},{"hookId":"h2","fnDuration":285,"afterFnDuration":0}],"test":{"fnDuration":2,"afterFnDuration":0},"after each":[{"hookId":"h4","fnDuration":11,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:16:13.797Z","wallClockDuration":341,"videoTimestamp":null,"startedAt":"2023-09-09T13:16:13.797Z","duration":341,"screenshots":[]}]},{"testId":"r5","title":["Failing test with 2 attempts, passed test and flaky test with 2 attempts","should fail on the first attempt and pass on the second"],"state":"passed","body":"() => {\n if (attempt === 0) {\n attempt++;\n cy.wrap(false).should('be.true'); // This will fail on the first attempt\n } else {\n cy.wrap(true).should('be.true'); // This will pass on the second attempt\n }\n }","displayError":null,"attempts":[{"state":"failed","error":{"name":"AssertionError","message":"AssertionError: Timed out retrying after 4000ms: expected false to be true","stack":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:16:21)","codeFrame":{"line":16,"column":22,"originalFile":"cypress/e2e/b.spec.js","relativeFile":"e2e/cypress-13-demo/cypress/e2e/b.spec.js","absoluteFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","frame":" 14 | if (attempt === 0) {\n 15 | attempt++;\n> 16 | cy.wrap(false).should('be.true'); // This will fail on the first attempt\n | ^\n 17 | } else {\n 18 | cy.wrap(true).should('be.true'); // This will pass on the second attempt\n 19 | }","language":"js"}},"timings":{"lifecycle":21,"before each":[{"hookId":"h1","fnDuration":9,"afterFnDuration":0},{"hookId":"h2","fnDuration":154,"afterFnDuration":0}],"test":{"fnDuration":3997,"afterFnDuration":210},"after each":[{"hookId":"h4","fnDuration":37,"afterFnDuration":0}]},"wallClockStartedAt":"2023-09-09T13:16:14.160Z","wallClockDuration":4394,"videoTimestamp":null,"startedAt":"2023-09-09T13:16:14.160Z","duration":4394,"screenshots":[{"testAttemptIndex":0,"size":380678,"takenAt":"2023-09-09T13:16:18.345Z","dimensions":{"width":2560,"height":1440},"multipart":false,"specName":"b.spec.js","testFailure":true,"path":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should fail on the first attempt and pass on the second (failed).png","scaled":true,"blackout":[],"duration":208,"testId":"r5","height":1440,"width":2560,"name":"screenshot"}]},{"state":"passed","error":null,"timings":{"lifecycle":35,"before each":[{"hookId":"h1","fnDuration":8,"afterFnDuration":0},{"hookId":"h2","fnDuration":345,"afterFnDuration":0}],"test":{"fnDuration":3,"afterFnDuration":0},"after each":[{"hookId":"h4","fnDuration":11,"afterFnDuration":1}]},"wallClockStartedAt":"2023-09-09T13:16:18.622Z","wallClockDuration":392,"videoTimestamp":null,"startedAt":"2023-09-09T13:16:18.622Z","duration":392,"screenshots":[]}]}]}],"startedTestsAt":"2023-09-09T13:15:27.599Z","endedTestsAt":"2023-09-09T13:16:19.050Z","config":{"additionalIgnorePattern":[],"animationDistanceThreshold":5,"arch":"arm64","autoOpen":false,"baseUrl":"https://todomvc.com/examples/vanillajs","blockHosts":null,"browsers":[{"name":"chrome","family":"chromium","channel":"stable","displayName":"Chrome","version":"116.0.5845.179","path":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","minSupportedVersion":64,"majorVersion":"116"},{"name":"edge","family":"chromium","channel":"stable","displayName":"Edge","version":"116.0.1938.76","path":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","minSupportedVersion":79,"majorVersion":"116"},{"name":"electron","channel":"stable","family":"chromium","displayName":"Electron","version":"106.0.5249.51","path":"","majorVersion":106}],"chromeWebSecurity":true,"clientCertificates":[],"clientRoute":"/__/","configFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress.config.ts","cypressBinaryRoot":"/Users/miguelangarano/Library/Caches/Cypress/12.17.4/Cypress.app/Contents/Resources/app","cypressEnv":"production","defaultCommandTimeout":4000,"devServerPublicPathRoute":"/__cypress/src","downloadsFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/downloads","env":{"currents_temp_file":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-59500-OGDLdU8z0f9q","currents_debug_enabled":false},"excludeSpecPattern":"*.hot-update.js","execTimeout":60000,"experimentalCspAllowList":false,"experimentalFetchPolyfill":false,"experimentalInteractiveRunEvents":false,"experimentalMemoryManagement":false,"experimentalModifyObstructiveThirdPartyCode":false,"experimentalOriginDependencies":false,"experimentalRunAllSpecs":false,"experimentalSingleTabRunMode":false,"experimentalSkipDomainInjection":null,"experimentalSourceRewriting":false,"experimentalStudio":false,"experimentalWebKitSupport":false,"fileServerFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","fixturesFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/fixtures","hosts":null,"includeShadowDom":false,"isInteractive":true,"isTextTerminal":true,"keystrokeDelay":0,"modifyObstructiveCode":true,"morgan":false,"namespace":"__cypress","numTestsKeptInMemory":0,"pageLoadTimeout":60000,"platform":"darwin","port":null,"projectId":null,"projectName":"cypress-13-demo","projectRoot":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","rawJson":{"e2e":{"baseUrl":"https://todomvc.com/examples/vanillajs","supportFile":"cypress/support/e2e.ts","specPattern":"cypress/*/**/*.spec.js","setupNodeEvents":"[Function setupNodeEvents]"},"component":{"specPattern":["pages/__tests__/*.spec.tsx"],"setupNodeEvents":"[Function setupNodeEvents]","devServer":{"framework":"next","bundler":"webpack"}},"baseUrl":"https://todomvc.com/examples/vanillajs","supportFile":"cypress/support/e2e.ts","specPattern":"cypress/*/**/*.spec.js","setupNodeEvents":"[Function setupNodeEvents]","envFile":{},"projectRoot":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","projectName":"cypress-13-demo","repoRoot":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13"},"redirectionLimit":20,"repoRoot":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","report":true,"reporter":"spec","reporterOptions":null,"reporterRoute":"/__cypress/reporter","requestTimeout":5000,"resolved":{"animationDistanceThreshold":{"value":5,"from":"default"},"arch":{"value":"arm64","from":"default"},"baseUrl":{"value":"https://todomvc.com/examples/vanillajs","from":"config"},"blockHosts":{"value":null,"from":"default"},"chromeWebSecurity":{"value":true,"from":"default"},"clientCertificates":{"value":[],"from":"default"},"defaultCommandTimeout":{"value":4000,"from":"default"},"downloadsFolder":{"value":"cypress/downloads","from":"default"},"env":{"currents_temp_file":{"value":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-59500-OGDLdU8z0f9q","from":"cli"},"currents_debug_enabled":{"value":false,"from":"cli"}},"execTimeout":{"value":60000,"from":"default"},"experimentalCspAllowList":{"value":false,"from":"default"},"experimentalFetchPolyfill":{"value":false,"from":"default"},"experimentalInteractiveRunEvents":{"value":false,"from":"default"},"experimentalRunAllSpecs":{"value":false,"from":"default"},"experimentalMemoryManagement":{"value":false,"from":"default"},"experimentalModifyObstructiveThirdPartyCode":{"value":false,"from":"default"},"experimentalSkipDomainInjection":{"value":null,"from":"default"},"experimentalOriginDependencies":{"value":false,"from":"default"},"experimentalSourceRewriting":{"value":false,"from":"default"},"experimentalSingleTabRunMode":{"value":false,"from":"default"},"experimentalStudio":{"value":false,"from":"default"},"experimentalWebKitSupport":{"value":false,"from":"default"},"fileServerFolder":{"value":"","from":"default"},"fixturesFolder":{"value":"cypress/fixtures","from":"default"},"excludeSpecPattern":{"value":"*.hot-update.js","from":"default"},"includeShadowDom":{"value":false,"from":"default"},"keystrokeDelay":{"value":0,"from":"default"},"modifyObstructiveCode":{"value":true,"from":"default"},"nodeVersion":{"from":"default"},"numTestsKeptInMemory":{"value":0,"from":"config"},"platform":{"value":"darwin","from":"default"},"pageLoadTimeout":{"value":60000,"from":"default"},"port":{"value":null,"from":"default"},"projectId":{"value":null,"from":"default"},"redirectionLimit":{"value":20,"from":"default"},"reporter":{"value":"spec","from":"default"},"reporterOptions":{"value":null,"from":"default"},"requestTimeout":{"value":5000,"from":"default"},"resolvedNodePath":{"value":null,"from":"default"},"resolvedNodeVersion":{"value":null,"from":"default"},"responseTimeout":{"value":30000,"from":"default"},"retries":{"value":{"runMode":0,"openMode":0},"from":"default"},"screenshotOnRunFailure":{"value":true,"from":"default"},"screenshotsFolder":{"value":"cypress/screenshots","from":"default"},"slowTestThreshold":{"value":10000,"from":"default"},"scrollBehavior":{"value":"top","from":"default"},"supportFile":{"value":"cypress/support/e2e.ts","from":"config"},"supportFolder":{"value":false,"from":"default"},"taskTimeout":{"value":60000,"from":"default"},"testIsolation":{"value":true,"from":"default"},"trashAssetsBeforeRuns":{"value":true,"from":"default"},"userAgent":{"value":null,"from":"default"},"video":{"value":true,"from":"default"},"videoCompression":{"value":32,"from":"default"},"videosFolder":{"value":"cypress/videos","from":"default"},"videoUploadOnPasses":{"value":true,"from":"default"},"viewportHeight":{"value":660,"from":"default"},"viewportWidth":{"value":1000,"from":"default"},"waitForAnimations":{"value":true,"from":"default"},"watchForFileChanges":{"value":false,"from":"config"},"specPattern":{"value":"cypress/*/**/*.spec.js","from":"config"},"browsers":{"value":[{"name":"chrome","family":"chromium","channel":"stable","displayName":"Chrome","version":"116.0.5845.179","path":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","minSupportedVersion":64,"majorVersion":"116"},{"name":"edge","family":"chromium","channel":"stable","displayName":"Edge","version":"116.0.1938.76","path":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","minSupportedVersion":79,"majorVersion":"116"},{"name":"electron","channel":"stable","family":"chromium","displayName":"Electron","version":"106.0.5249.51","path":"","majorVersion":106}],"from":"runtime"},"hosts":{"value":null,"from":"default"},"isInteractive":{"value":true,"from":"default"}},"resolvedNodePath":"/Users/miguelangarano/.nvm/versions/node/v18.14.2/bin/node","resolvedNodeVersion":"18.14.2","responseTimeout":30000,"retries":{"runMode":0,"openMode":0},"screenshotOnRunFailure":true,"screenshotsFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots","scrollBehavior":"top","setupNodeEvents":"[Function setupNodeEvents]","slowTestThreshold":10000,"socketId":"0arl6nt1ia","socketIoCookie":"__socket","socketIoRoute":"/__socket","specPattern":"cypress/*/**/*.spec.js","supportFile":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/support/e2e.ts","supportFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/support","taskTimeout":60000,"testIsolation":true,"trashAssetsBeforeRuns":true,"userAgent":null,"version":"12.17.4","video":true,"videoCompression":32,"videoUploadOnPasses":true,"videosFolder":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos","viewportHeight":660,"viewportWidth":1000,"waitForAnimations":true,"watchForFileChanges":false,"testingType":"e2e"},"status":"finished","runUrl":"https://app.currents.dev/run/271a54ce36c805d4"} \ No newline at end of file diff --git a/e2e/cypress-13-demo/scripts/files.ts b/e2e/cypress-13-demo/scripts/files.ts index 184a0a0..5fcaa25 100644 --- a/e2e/cypress-13-demo/scripts/files.ts +++ b/e2e/cypress-13-demo/scripts/files.ts @@ -3,48 +3,61 @@ import { run } from "cypress-cloud"; import fs from "fs"; (async function runTests() { - const projectId = process.env.CURRENTS_PROJECT_ID || "projectId"; - const recordKey = process.env.CURRENTS_RECORD_KEY || "recordKey"; - const apiKey = process.env.CURRENTS_API_KEY || "apiKey"; - const apiUrl = "https://api.currents.dev/v1/runs/" + const projectId = process.env.CURRENTS_PROJECT_ID || "2cI1I5"; + const recordKey = process.env.CURRENTS_RECORD_KEY || "YakSabgBLb7D40nZ"; + const apiKey = + process.env.CURRENTS_API_KEY || + "YpYIAerb1rWuOFrvf7ciK8Za8koKgrtRfoDPboQUOjScnBv91m4qAXSDb8Rb57m9"; + const apiUrl = "https://api.currents.dev/v1/runs/"; - const ciBuildId = `run-api-smoke-${new Date().toISOString()}`; - const result: any = await run({ - ciBuildId, - projectId, - recordKey - }); - assert(result !== undefined); + const ciBuildId = `run-api-smoke-${new Date().toISOString()}`; + const result: any = await run({ + ciBuildId, + projectId, + recordKey, + }); + assert(result !== undefined); - const headers = new Headers({ - 'Authorization': `Bearer ${apiKey}`, - }); + const headers = new Headers({ + Authorization: `Bearer ${apiKey}`, + }); - fs.writeFile('data-references/ccy-1.10-cypress-13/cypress-cloud-output-reference.json', JSON.stringify(result), (err) => { - if (err) throw err; - console.log('file saved'); - }); + fs.writeFile( + "data-references/ccy-1.10-cypress-13/cypress-cloud-output-reference.json", + JSON.stringify(result), + (err) => { + if (err) throw err; + console.log("file saved"); + } + ); - const runUrl = result.runUrl; + const runUrl = result.runUrl; - fetch(`${apiUrl}${runUrl.split("run/")[1]}`, { - method: "GET", - headers - }) - .then(response => { - if (!response.ok) { - throw new Error(`HTTP error! Status: ${response.status}`); - } - return response.json(); - }) - .then(data => { - console.log(data); - fs.writeFile('data-references/ccy-1.10-cypress-13/currents-api-output-reference.json', JSON.stringify(data), (err) => { - if (err) throw err; - console.log('file saved'); - }); - }) - .catch(error => { - console.error('There was an error in fetch request:', error.message); - }); + fetch(`${apiUrl}${runUrl.split("run/")[1]}`, { + method: "GET", + headers, + }) + .then((response) => { + if (!response.ok) { + throw new Error(`HTTP error! Status: ${response.status}`); + } + return response.json(); + }) + .then((data) => { + console.log(data); + fs.writeFile( + "data-references/ccy-1.10-cypress-13/currents-api-output-reference.json", + JSON.stringify(data), + (err) => { + if (err) throw err; + console.log("file saved"); + } + ); + }) + .catch((error) => { + console.error( + "There was an error in fetch request:", + error.message + ); + }); })(); diff --git a/e2e/cypress-13-demo/scripts/test.ts b/e2e/cypress-13-demo/scripts/test.ts index 3b786ef..603ca80 100644 --- a/e2e/cypress-13-demo/scripts/test.ts +++ b/e2e/cypress-13-demo/scripts/test.ts @@ -1,263 +1,331 @@ import fs from "fs"; -import { expect } from 'chai'; +import { expect } from "chai"; type ComparisonResult = { - path: string; - valueA: any; - valueB: any; - isEqual: boolean; - note?: string; + path: string; + valueA: any; + valueB: any; + isEqual: boolean; + note?: string; }; -function compareObjectsRecursively(objA: any, objB: any, path: string = ''): ComparisonResult[] { - let results: ComparisonResult[] = []; +function compareObjectsRecursively( + objA: any, + objB: any, + path: string = "" +): ComparisonResult[] { + let results: ComparisonResult[] = []; - // If both are objects but neither arrays nor strings. - if (typeof objA === 'object' && objA !== null && !(objA instanceof Array) && typeof objA !== 'string' && - typeof objB === 'object' && objB !== null && !(objB instanceof Array) && typeof objB !== 'string') { + // If both are objects but neither arrays nor strings. + if ( + typeof objA === "object" && + objA !== null && + !(objA instanceof Array) && + typeof objA !== "string" && + typeof objB === "object" && + objB !== null && + !(objB instanceof Array) && + typeof objB !== "string" + ) { + const keys = new Set([...Object.keys(objA), ...Object.keys(objB)]); - const keys = new Set([...Object.keys(objA), ...Object.keys(objB)]); + keys.forEach((key) => { + const newPath = path ? `${path}.${key}` : key; + results = results.concat( + compareObjectsRecursively(objA[key], objB[key], newPath) + ); + }); + } + // If both are arrays + else if (Array.isArray(objA) && Array.isArray(objB)) { + const maxLength = Math.max(objA.length, objB.length); + for (let i = 0; i < maxLength; i++) { + const newPath = `${path}[${i}]`; + results = results.concat( + compareObjectsRecursively(objA[i], objB[i], newPath) + ); + } + } else { + const isEqual = objA === objB; + const note = + objA === undefined + ? "Does not exist in A" + : objB === undefined + ? "Does not exist in B" + : undefined; - keys.forEach(key => { - const newPath = path ? `${path}.${key}` : key; - results = results.concat(compareObjectsRecursively(objA[key], objB[key], newPath)); - }); - } - // If both are arrays - else if (Array.isArray(objA) && Array.isArray(objB)) { - const maxLength = Math.max(objA.length, objB.length); - for (let i = 0; i < maxLength; i++) { - const newPath = `${path}[${i}]`; - results = results.concat(compareObjectsRecursively(objA[i], objB[i], newPath)); - } - } - else { - const isEqual = objA === objB; - const note = objA === undefined ? "Does not exist in A" : objB === undefined ? "Does not exist in B" : undefined; + results.push({ + path: path || "root", + valueA: objA, + valueB: objB, + isEqual: isEqual, + note: note, + }); + } - results.push({ - path: path || 'root', - valueA: objA, - valueB: objB, - isEqual: isEqual, - note: note - }); - } - - return results; + return results; } -const avoidableProperties: { property: string, mustHave: boolean }[] = [ - { - property: "runId", - mustHave: true - }, - { - property: "createdAt", - mustHave: true - }, - { - property: "groupId", - mustHave: true - }, - { - property: "createdAt", - mustHave: true - }, - { - property: "ciBuildId", - mustHave: true - }, - { - property: "instanceId", - mustHave: true - }, - { - property: "claimedAt", - mustHave: true - }, - { - property: "completedAt", - mustHave: true - }, - { - property: "machineId", - mustHave: true - }, - { - property: "videoUrl", - mustHave: true - }, - { - property: "duration", - mustHave: true - }, - { - property: "endedAt", - mustHave: true - }, - { - property: "startedAt", - mustHave: true - }, - { - property: "wallClockDuration", - mustHave: true - }, - { - property: "wallClockStartedAt", - mustHave: true - }, - { - property: "wallClockEndedAt", - mustHave: true - }, - { - property: "screenshotId", - mustHave: true - }, - { - property: "takenAt", - mustHave: true - }, - { - property: "screenshotURL", - mustHave: true - }, - { - property: "size", - mustHave: false - }, - { - property: "dimensions", - mustHave: false - }, - { - property: "multipart", - mustHave: false - }, - { - property: "specName", - mustHave: false - }, - { - property: "testFailure", - mustHave: false - }, - { - property: "scaled", - mustHave: false - }, - { - property: "blackout", - mustHave: false - }, - { - property: "blackout", - mustHave: false - }, - { - property: "totalDuration", - mustHave: true - }, - { - property: "start", - mustHave: true - }, - { - property: "end", - mustHave: true - }, - { - property: "error.message", - mustHave: true - }, - { - property: "error.stack", - mustHave: true - }, - { - property: "lifecycle", - mustHave: true - }, - { - property: "fnDuration", - mustHave: true - }, - { - property: "afterFnDuration", - mustHave: true - }, - { - property: "videoTimestamp", - mustHave: true - }, - { - property: "config.resolved.env.currents_temp_file.value", - mustHave: true - }, - { - property: "socketId", - mustHave: true - }, - { - property: "runUrl", - mustHave: true - } +const avoidableProperties: { property: string; mustHave: boolean }[] = [ + { + property: "runId", + mustHave: true, + }, + { + property: "createdAt", + mustHave: true, + }, + { + property: "groupId", + mustHave: true, + }, + { + property: "createdAt", + mustHave: true, + }, + { + property: "ciBuildId", + mustHave: true, + }, + { + property: "instanceId", + mustHave: true, + }, + { + property: "claimedAt", + mustHave: true, + }, + { + property: "completedAt", + mustHave: true, + }, + { + property: "machineId", + mustHave: true, + }, + { + property: "videoUrl", + mustHave: true, + }, + { + property: "duration", + mustHave: true, + }, + { + property: "endedAt", + mustHave: true, + }, + { + property: "startedAt", + mustHave: true, + }, + { + property: "wallClockDuration", + mustHave: true, + }, + { + property: "wallClockStartedAt", + mustHave: true, + }, + { + property: "wallClockEndedAt", + mustHave: true, + }, + { + property: "screenshotId", + mustHave: true, + }, + { + property: "takenAt", + mustHave: true, + }, + { + property: "screenshotURL", + mustHave: true, + }, + { + property: "size", + mustHave: false, + }, + { + property: "dimensions", + mustHave: false, + }, + { + property: "multipart", + mustHave: false, + }, + { + property: "specName", + mustHave: false, + }, + { + property: "testFailure", + mustHave: false, + }, + { + property: "scaled", + mustHave: false, + }, + { + property: "blackout", + mustHave: false, + }, + { + property: "blackout", + mustHave: false, + }, + { + property: "totalDuration", + mustHave: true, + }, + { + property: "start", + mustHave: true, + }, + { + property: "end", + mustHave: true, + }, + { + property: "error.message", + mustHave: true, + }, + { + property: "error.stack", + mustHave: true, + }, + { + property: "lifecycle", + mustHave: true, + }, + { + property: "fnDuration", + mustHave: true, + }, + { + property: "afterFnDuration", + mustHave: true, + }, + { + property: "videoTimestamp", + mustHave: true, + }, + { + property: "config.resolved.env.currents_temp_file.value", + mustHave: true, + }, + { + property: "socketId", + mustHave: true, + }, + { + property: "runUrl", + mustHave: true, + }, + { + property: "commit.message", + mustHave: true, + }, + { + property: "commit.sha", + mustHave: true, + }, + { + property: "spec.absolute", + mustHave: true, + }, + { + property: "video", + mustHave: true, + }, + { + property: "displayError", + mustHave: true, + }, + { + property: "relativeFile", + mustHave: true, + }, ]; function isAvoidableProperty(property: string) { - const avoidableData = avoidableProperties.find(item => property.includes(item.property)); - if (avoidableData) { - return avoidableData; - } - return; + const avoidableData = avoidableProperties.find((item) => + property.includes(item.property) + ); + if (avoidableData) { + return avoidableData; + } + return; } function testEachResults(results: ComparisonResult[]) { - results.forEach((result) => { - if (result.valueA) { - const avoidableData = isAvoidableProperty(result.path); - if (!avoidableData) { - expect(result.valueA, `The values are not equal at: ${result.path}. ${result.note ?? ""}`).to.equal(result.valueB); - return; - } + results.forEach((result) => { + if (result.valueA) { + const avoidableData = isAvoidableProperty(result.path); + if (!avoidableData) { + expect( + result.valueA, + `The values are not equal at: ${result.path}. ${ + result.note ?? "" + }` + ).to.equal(result.valueB); + return; + } - if (avoidableData.mustHave) { - expect(result.valueB, `The values at ${result.path} does not exist and it should. ${result.note ?? ""}`).not.to.equal("Does not exist"); - return; - } - } - }) + if (avoidableData.mustHave) { + expect( + result.valueB, + `The values at ${ + result.path + } does not exist and it should. ${result.note ?? ""}` + ).not.to.equal("Does not exist"); + return; + } + } + }); } - - (async function runTest() { - try { - const originalCurrentApiFile = fs.readFileSync('data-references/ccy-1.9.4-cypress-12/currents-api-output-reference.json', 'utf8'); - const originalCypressCloudFile = fs.readFileSync('data-references/ccy-1.9.4-cypress-12/cypress-cloud-output-reference.json', 'utf8'); - - const originalCurrentApi = JSON.parse(originalCurrentApiFile); - const originalCypressCloud = JSON.parse(originalCypressCloudFile); - - const modifiedCurrentApiFile = fs.readFileSync('data-references/ccy-1.10-cypress-12/currents-api-output-reference.json', 'utf8'); - const modifiedCypressCloudFile = fs.readFileSync('data-references/ccy-1.10-cypress-12/cypress-cloud-output-reference.json', 'utf8'); - - const modifiedCurrentApi = JSON.parse(modifiedCurrentApiFile); - const modifiedCypressCloud = JSON.parse(modifiedCypressCloudFile); + try { + const originalCurrentApiFile = fs.readFileSync( + "data-references/ccy-1.9.4-cypress-12/currents-api-output-reference.json", + "utf8" + ); + const originalCypressCloudFile = fs.readFileSync( + "data-references/ccy-1.9.4-cypress-12/cypress-cloud-output-reference.json", + "utf8" + ); + const originalCurrentApi = JSON.parse(originalCurrentApiFile); + const originalCypressCloud = JSON.parse(originalCypressCloudFile); - const currentsApiResults = compareObjectsRecursively(originalCurrentApi, modifiedCurrentApi); + const modifiedCurrentApiFile = fs.readFileSync( + "data-references/ccy-1.10-cypress-13/currents-api-output-reference.json", + "utf8" + ); + const modifiedCypressCloudFile = fs.readFileSync( + "data-references/ccy-1.10-cypress-13/cypress-cloud-output-reference.json", + "utf8" + ); - testEachResults(currentsApiResults); + const modifiedCurrentApi = JSON.parse(modifiedCurrentApiFile); + const modifiedCypressCloud = JSON.parse(modifiedCypressCloudFile); - const cypressCloudResults = compareObjectsRecursively(originalCypressCloud, modifiedCypressCloud); + const currentsApiResults = compareObjectsRecursively( + originalCurrentApi, + modifiedCurrentApi + ); - testEachResults(cypressCloudResults); + testEachResults(currentsApiResults); + const cypressCloudResults = compareObjectsRecursively( + originalCypressCloud, + modifiedCypressCloud + ); - } catch (err) { - console.error('Process error:', err); - } + testEachResults(cypressCloudResults); + } catch (err) { + console.error("Process error:", err); + } })(); diff --git a/e2e/cypress-13-demo/validation-results/currents-api-validation.json b/e2e/cypress-13-demo/validation-results/currents-api-validation.json index b6e8228..8dc401a 100644 --- a/e2e/cypress-13-demo/validation-results/currents-api-validation.json +++ b/e2e/cypress-13-demo/validation-results/currents-api-validation.json @@ -1 +1 @@ -[{"path":"status","valueA":"OK","valueB":"OK","isEqual":true},{"path":"data.runId","valueA":"8bca8d1e39c70474","valueB":"6c996f69397aa4f2","isEqual":false},{"path":"data.projectId","valueA":"2cI1I5","valueB":"2cI1I5","isEqual":true},{"path":"data.createdAt","valueA":"2023-09-07T14:43:06.355Z","valueB":"2023-09-07T15:45:00.395Z","isEqual":false},{"path":"data.cypressVersion","valueA":"12.17.4","valueB":"13.1.0","isEqual":false},{"path":"data.cancellation","valueA":null,"valueB":null,"isEqual":true},{"path":"data.timeout.isTimeout","valueA":false,"valueB":false,"isEqual":true},{"path":"data.groups[0].groupId","valueA":"run-api-smoke-2023-09-07T14:43:02.518Z","valueB":"run-api-smoke-2023-09-07T15:44:57.172Z","isEqual":false},{"path":"data.groups[0].platform.osName","valueA":"darwin","valueB":"darwin","isEqual":true},{"path":"data.groups[0].platform.osVersion","valueA":"22.5.0","valueB":"22.5.0","isEqual":true},{"path":"data.groups[0].platform.browserName","valueA":"Electron","valueB":"Electron","isEqual":true},{"path":"data.groups[0].platform.browserVersion","valueA":"106.0.5249.51","valueB":"106.0.5249.51","isEqual":true},{"path":"data.groups[0].createdAt","valueA":"2023-09-07T14:43:06.355Z","valueB":"2023-09-07T15:45:00.395Z","isEqual":false},{"path":"data.groups[0].instances.overall","valueA":2,"valueB":2,"isEqual":true},{"path":"data.groups[0].instances.claimed","valueA":2,"valueB":2,"isEqual":true},{"path":"data.groups[0].instances.complete","valueA":2,"valueB":2,"isEqual":true},{"path":"data.groups[0].instances.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"data.groups[0].instances.failures","valueA":2,"valueB":2,"isEqual":true},{"path":"data.groups[0].tests.overall","valueA":4,"valueB":4,"isEqual":true},{"path":"data.groups[0].tests.passes","valueA":1,"valueB":1,"isEqual":true},{"path":"data.groups[0].tests.failures","valueA":3,"valueB":3,"isEqual":true},{"path":"data.groups[0].tests.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"data.groups[0].tests.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"data.groups[0].tests.retries","valueA":0,"valueB":0,"isEqual":true},{"path":"data.groups[0].tests.flaky","valueA":0,"valueB":0,"isEqual":true},{"path":"data.meta.ciBuildId","valueA":"run-api-smoke-2023-09-07T14:43:02.518Z","valueB":"run-api-smoke-2023-09-07T15:44:57.172Z","isEqual":false},{"path":"data.meta.commit.branch","valueA":"fix/cypress-13-ml","valueB":"fix/cypress-13-ml","isEqual":true},{"path":"data.meta.commit.remoteOrigin","valueA":null,"valueB":null,"isEqual":true},{"path":"data.meta.commit.authorEmail","valueA":"agoldis@gmail.com","valueB":"agoldis@gmail.com","isEqual":true},{"path":"data.meta.commit.authorName","valueA":"Andrew Goldis","valueB":"Andrew Goldis","isEqual":true},{"path":"data.meta.commit.message","valueA":"Merge branch 'fix/cypress-13-ml' of https://github.com/currents-dev/cypress-cloud-private into fix/cypress-13-ml\n","valueB":"Merge branch 'fix/cypress-13-ml' of https://github.com/currents-dev/cypress-cloud-private into fix/cypress-13-ml\n","isEqual":true},{"path":"data.meta.commit.sha","valueA":"9a83d60ae901f8975ff343b8d4330258d35f01d3","valueB":"9a83d60ae901f8975ff343b8d4330258d35f01d3","isEqual":true},{"path":"data.meta.platform.osName","valueA":"darwin","valueB":"darwin","isEqual":true},{"path":"data.meta.platform.osVersion","valueA":"22.5.0","valueB":"22.5.0","isEqual":true},{"path":"data.meta.platform.browserName","valueA":"Electron","valueB":"Electron","isEqual":true},{"path":"data.meta.platform.browserVersion","valueA":"106.0.5249.51","valueB":"106.0.5249.51","isEqual":true},{"path":"data.specs[0].groupId","valueA":"run-api-smoke-2023-09-07T14:43:02.518Z","valueB":"run-api-smoke-2023-09-07T15:44:57.172Z","isEqual":false},{"path":"data.specs[0].spec","valueA":"cypress/e2e/retries.spec.js","valueB":"cypress/e2e/retries.spec.js","isEqual":true},{"path":"data.specs[0].instanceId","valueA":"8J3rwD777aCy","valueB":"SPL3dLc8e0hy","isEqual":false},{"path":"data.specs[0].claimedAt","valueA":"2023-09-07T14:43:06.807Z","valueB":"2023-09-07T15:45:00.775Z","isEqual":false},{"path":"data.specs[0].completedAt","valueA":"2023-09-07T14:43:16.205Z","valueB":"2023-09-07T15:45:07.729Z","isEqual":false},{"path":"data.specs[0].machineId","valueA":"5sO76DOXueAs","valueB":"3fadL7JMOlDe","isEqual":false},{"path":"data.specs[0].worker","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[0].results.videoUrl","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/8J3rwD777aCy_6fNrOdy8nJCA.mp4?Expires=1694357436&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=ASPwUt~ZecRhsF2a9YYso-GB4i1c-F2WHKWXQX2VglFEYKFsS8MV4sswVT470Ccd6J2Zlg738GJHz6jVMwyw3yXxfj1J7kgNXodKXaoG1Ra24yNAk4pYkOazD0KXw4rIOqv9L7mPL9O8wv7e7eHvF~1HBexgdo8teJCW-1AS~C2tP~OcYZ1DsSuB~mQzPU77kaFXQ93htnZBxSImu54s5ttbMR3tt6vPawPhGjvYLASvrGRBoMdHWOgxmtIXVOmv6e1WxR6XpicnK7OtYkHvonGl-dQ-eUrWjnZbN5tGk9goFi1r333JqyEHZZDsBivNkpqI9yO53C3gJ3ZOgeZvKw__","valueB":null,"isEqual":false},{"path":"data.specs[0].results.stats.duration","valueA":2254,"valueB":1908,"isEqual":false},{"path":"data.specs[0].results.stats.endedAt","valueA":"2023-09-07T14:43:14.391Z","valueB":"2023-09-07T15:45:07.004Z","isEqual":false},{"path":"data.specs[0].results.stats.startedAt","valueA":"2023-09-07T14:43:12.137Z","valueB":"2023-09-07T15:45:05.096Z","isEqual":false},{"path":"data.specs[0].results.stats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[0].results.stats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[0].results.stats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[0].results.stats.wallClockDuration","valueA":2254,"valueB":1908,"isEqual":false},{"path":"data.specs[0].results.stats.wallClockStartedAt","valueA":"2023-09-07T14:43:12.137Z","valueB":"2023-09-07T15:45:05.096Z","isEqual":false},{"path":"data.specs[0].results.stats.wallClockEndedAt","valueA":"2023-09-07T14:43:14.391Z","valueB":"2023-09-07T15:45:07.004Z","isEqual":false},{"path":"data.specs[0].results.screenshots[0].screenshotId","valueA":"Tml5Yc4nGNbdiHx-Pt0cr","valueB":"radcleiZs7RLB80lEc4bS","isEqual":false},{"path":"data.specs[0].results.screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[0].results.screenshots[0].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[0].results.screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[0].takenAt","valueA":"2023-09-07T14:43:12.709Z","valueB":"2023-09-07T15:45:05.572Z","isEqual":false},{"path":"data.specs[0].results.screenshots[0].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/NlmKKKEpT5ei.png?Expires=1694357436&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=EL1VMe2pzO3yZamPnPmUUXjjS7q-9DdaEH5gOxEyOMrupuX7G2Y4judokPcIcsF-HPO5iEUXsEkOFBjGBDGW2hViuDMuIVLV-UfubMcIRg9QOy4A-LlZ62gwEtesc~GbkQDkTSA1UCcKn4SBHiDQolXfe8MYxlbr4GrKp3Zajf2kRitYb5pq8te7wvlaQyvDhl1Xs6Zykt0Fwo2vCxAK56mDV7rhKq2-kKOdEeX15PH2tyTMzvufRiPkc6sKwWGSxdJEpMzzbk-WAEuWjngoqJqdxrDlBMV~q0nPdYSdGdqC582uXlFrNn4QehPM0uzjGOhyykjkdchg4f-pdiYkhQ__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/I0YCVxPsCcIp.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=PsHmYXPaPxye3SEm~G9p7g4Rme6n3wnt-U95n4FODZWNl9uX-vh~Y8GTQTSZCMwWvjxYXQIm4~keEP-cA-zNGkA-77EDFTYx2vgoj0flzTSHXc1pINZiz824NjDyeeDy6gH9V5EqjrbuwqGvfc2Njy~FE4ysz8X6qt4GMNdEPNseBV3JgR13e0D6kXbafxoa-jqQUby~Zyh4ZVjcdPS2fMOskBb~~0m8sYIIDqsafnqbtkILHqFsmhB44G6k3w4bFsehyNnlES79mkLtH5Mf5pkwFwEm0hFKU6-JxUVw1EE16WCHlhdwVGyX57SADj9HdaCwQVNWmdF71J-a1H4LpA__","isEqual":false},{"path":"data.specs[0].results.screenshots[0].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[0].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[0].size","valueB":331358,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].specName","valueB":"retries.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].duration","valueB":236,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].screenshotId","valueA":"ejtK6-YBwFVDalCGBLi7s","valueB":"X7_GS-Ai4FbXVBu7s2mmm","isEqual":false},{"path":"data.specs[0].results.screenshots[1].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[0].results.screenshots[1].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[0].results.screenshots[1].testAttemptIndex","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[0].results.screenshots[1].takenAt","valueA":"2023-09-07T14:43:13.168Z","valueB":"2023-09-07T15:45:05.978Z","isEqual":false},{"path":"data.specs[0].results.screenshots[1].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/7OxLURMw7O25.png?Expires=1694357436&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=RxhWyUdzLbRPKULm5O6fu4YkbArD81WWaT~TUS11d1i6KEurZZD0AsorMBy-ZctXcyzdnB7R4wtXg2r85Jjap9rkv52XrzaSLPcppyh3g3c3rWGUquMCDbYwgw9X~Ckp8H3eYeUuRszjRlvWDhCk1JVE-7aKFbxnSAQpLATjAjs~4qFmhUG0MLF0y95nPLy7o6L1f4vnywa-UpZtTfUwJtZvbimqV74dcPQKSTxbHTcnIdoV-NcYaRh1qjnmKHGaZN6pmreNQ7Hmq22XfSuv9ga2EKUwsDHVUxd3e~bl7kwNIKPmMRgHSyumRnTX23EeeugOAjXI1HqzpriQQnxS0w__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/ta4mK42F5vvR.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=TRYeyps3i5IppXcjmA5HKHwTHY7upc8IUSBhYf81PJC0oio7ufZgUgodr2414NVY5ouCqIyHBzt3F5RHT5Gjtatx7eWpkhdvr6oR0~joBeCHBThaBJyYJ4piAZzlZuU~hgg51c-sb6fg~q~hQgej8QCA7GRLB2tuYIXtxoyvV-JLz~1ZFW1xT9g~JO1BNAMQMm1yKwED~UJ3rYb46esZxuDXe73Y0Pa3I8FLSgc9O9AUP8wwMFjSh-wi1qbAD4lROqrvvTI-R~-DJQC4KDlWo92r1UQAsrhlXLf5SriMmNUF9IUMIZJ5fsSAloQdVcU~wuuUWxIUA2m7H1008BRt1Q__","isEqual":false},{"path":"data.specs[0].results.screenshots[1].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[1].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[1].size","valueB":379236,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].specName","valueB":"retries.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].duration","valueB":220,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].screenshotId","valueA":"2jteLpIvl_LfW6ULaExOF","valueB":"QENkTXmggrSghsbJQDlZR","isEqual":false},{"path":"data.specs[0].results.screenshots[2].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[0].results.screenshots[2].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[0].results.screenshots[2].testAttemptIndex","valueA":2,"valueB":2,"isEqual":true},{"path":"data.specs[0].results.screenshots[2].takenAt","valueA":"2023-09-07T14:43:13.598Z","valueB":"2023-09-07T15:45:06.347Z","isEqual":false},{"path":"data.specs[0].results.screenshots[2].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/Ak6wrgkEnhff.png?Expires=1694357436&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=gzhg3iY7L5y7Pjhg6BaS-tbYzBMJW4ZGvYJ6hX2Qk71QnTqZ91kg1RLURhZ-nBNbLsIvsmcOnyARGKtxLpanf08PEjTlZRto2xWW~pNR3O3SOTCkS7yACQWuHBNNNa~Rgl4eS6dZwyVgEvWRDY4Jk8xLgv4TKnTp-a4LwvzS6BtdzUGLxwztOqDAXbwjOVuxAWFxuw~SsZPmt7w-aAVybBHBAq6tk8ZATg2S321qCM-KfUS5XDpQSDV8nj-Q4HBpMjpIuAh943wX2kYdJ5MkZG5CF570gAMZYyIoKfDEdaLvn59dqtTUU77TSyie7kWbDk8KVbLfLxgXiq8KOd9X8g__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/nd1Nd9sKtrOi.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=Jr~hbpySlB2PD75NUjCUEkKp1NzCS4O1vPnB6khsrwAnz9U5oh5IzTmng06em~54oX1kx0JgxMfnWzX64uKZrj44lQv0Wy~Zpzbp0qF~NFLlDVvHI4~6fJyZLTPJNFXLp9MCRM9t5zVx29UoV-Zwn9XSdqEvarGztV-IlWZXGrlHFu~KPfjxTUVESL9AMouSt-hKXoLLZ6hVw76HRfIZof1kiuC1m-8FG0amC-~pMyjR7cn4KHw0A5yWKIbZ4Ft5wsPQGIKxMtADOusbfBohsDr2JTxAhSNdEUV1IqLmigPGIs0QR5DxrSPCWV2TXc98wP3g5ndXB2QaVtxTePdizQ__","isEqual":false},{"path":"data.specs[0].results.screenshots[2].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[2].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[2].size","valueB":378475,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].specName","valueB":"retries.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].duration","valueB":233,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[3].screenshotId","valueA":"d-XmcTx49f68Dus9DUnjx","valueB":"9CsLIiDfGT5keaGHYOPbm","isEqual":false},{"path":"data.specs[0].results.screenshots[3].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[0].results.screenshots[3].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[0].results.screenshots[3].testAttemptIndex","valueA":3,"valueB":3,"isEqual":true},{"path":"data.specs[0].results.screenshots[3].takenAt","valueA":"2023-09-07T14:43:14.067Z","valueB":"2023-09-07T15:45:06.735Z","isEqual":false},{"path":"data.specs[0].results.screenshots[3].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/yYdCIWF3aAev.png?Expires=1694357436&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=JPRD6DvU5KVSu8U8uhjHgoj8g-kg0C~KSDhaPLGIr7u8OiyJEkGsWogBG01mPEFCYKrNXHXjSOpabfgp6VzvuxekVs-iDnmd7vtA61Ir4GD8MWaYU3iCH1kBWkQpvXNkT3XzddeUtNQ1MAQz-S2xqjHh-deCCHM~eL6lf7E7SUfZhew~j5qx7VMmuuY~4jxwcIzTfoQP~92giE4P5J2Evh8OEbT3mFheL18cDKFbMHOcqQybDf4AvGNQkQucm0hHv~bU498zOVcDgdLhWZr4sjRn1IqmYreK-s-Zn0dfpa5mg4oOcMpbGybOqKTPh6l7CmBOJTeqnQicdbIICFey7A__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/uNPZC29pz5j3.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=S5GVYf8SXuu7HsgkKuDKe~OLnkM1GC0P5hBECY2gXzcg6V~2xYSjw85TVkRs6R9cFJsymbq5Byo4JUNCblGZ0DdROC545bRMDXwuQ41YvUNYbatvIpaBKoJtkww9J0vbfdVeUk0eAwbLx3F3YqhtIyWxGoGRpPH3CdSpvC9VjmtVTLOMVcEXAiq~a4iXFnJg7ZMZB4f6PjeEPYPIEVPsiVDzePlST47kd~6T9CFxIYkayrqFu0NTwPCeDfEhvRUa1SMSyuimB0CUdWP0Pt~0cbgXFVRALmClQOCBahOxlwVZzOmTrxXemkPBBf1im4ZI1jyw~z5KgNHdwg5wYDLWgA__","isEqual":false},{"path":"data.specs[0].results.screenshots[3].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[3].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[3].size","valueB":377835,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[3].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[3].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[3].specName","valueB":"retries.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[3].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[3].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[3].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[3].duration","valueB":210,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.exception","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[0].results.flaky","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].groupId","valueA":"run-api-smoke-2023-09-07T14:43:02.518Z","valueB":"run-api-smoke-2023-09-07T15:44:57.172Z","isEqual":false},{"path":"data.specs[1].spec","valueA":"cypress/e2e/xxx.spec.js","valueB":"cypress/e2e/xxx.spec.js","isEqual":true},{"path":"data.specs[1].instanceId","valueA":"gfN55D1Z1Ssq","valueB":"mrswD0yVSHQt","isEqual":false},{"path":"data.specs[1].claimedAt","valueA":"2023-09-07T14:43:06.815Z","valueB":"2023-09-07T15:45:00.787Z","isEqual":false},{"path":"data.specs[1].completedAt","valueA":"2023-09-07T14:43:32.123Z","valueB":"2023-09-07T15:45:20.638Z","isEqual":false},{"path":"data.specs[1].machineId","valueA":"5sO76DOXueAs","valueB":"3fadL7JMOlDe","isEqual":false},{"path":"data.specs[1].worker","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[1].results.videoUrl","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/gfN55D1Z1Ssq_mR76fZikuc8A.mp4?Expires=1694357436&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=RluI2-xMVMVK501sGUvh9QY09MlBlATaFuUyp8-lZDZ5PNnD-hg3Af1mvdDTnj7zbZFOyMIk2iMDP-SpVZ7LAF-fKTjC43RCymZK1XUbt6K5~LzMxBoBaGgAZXv~AODDvabq9BLYWYKo5k77fGYI3HKtqqtx9z129LYFA9CkGar0v49K~PEpo2KtyVYKdeCJpGhSanpBH~dyaH83hgQnFnCb2HEZLoOBizZnW1Fq-ABiUyaF~n2FyRnAeku2yfsr9z07aZN1bIKGHCLx0nW~Hgmt1FkOkFZpUFGLWg-zIcmMfEdKPH-8jC6pkbo-ZFOZIUK61dF~HoGT9GahxbvXeg__","valueB":null,"isEqual":false},{"path":"data.specs[1].results.stats.duration","valueA":12043,"valueB":11899,"isEqual":false},{"path":"data.specs[1].results.stats.endedAt","valueA":"2023-09-07T14:43:30.200Z","valueB":"2023-09-07T15:45:19.927Z","isEqual":false},{"path":"data.specs[1].results.stats.startedAt","valueA":"2023-09-07T14:43:18.157Z","valueB":"2023-09-07T15:45:08.028Z","isEqual":false},{"path":"data.specs[1].results.stats.failures","valueA":2,"valueB":2,"isEqual":true},{"path":"data.specs[1].results.stats.passes","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[1].results.stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[1].results.stats.tests","valueA":3,"valueB":3,"isEqual":true},{"path":"data.specs[1].results.stats.wallClockDuration","valueA":12043,"valueB":11899,"isEqual":false},{"path":"data.specs[1].results.stats.wallClockStartedAt","valueA":"2023-09-07T14:43:18.157Z","valueB":"2023-09-07T15:45:08.028Z","isEqual":false},{"path":"data.specs[1].results.stats.wallClockEndedAt","valueA":"2023-09-07T14:43:30.200Z","valueB":"2023-09-07T15:45:19.927Z","isEqual":false},{"path":"data.specs[1].results.screenshots[0].screenshotId","valueA":"_2ZG8ySKdSINKk1MXp56g","valueB":"1B57GNERprj6rJ0Th9AiI","isEqual":false},{"path":"data.specs[1].results.screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[1].results.screenshots[0].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[1].results.screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[0].takenAt","valueA":"2023-09-07T14:43:23.326Z","valueB":"2023-09-07T15:45:13.129Z","isEqual":false},{"path":"data.specs[1].results.screenshots[0].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/CbRyd8GNvTBZ.png?Expires=1694357436&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=KWufDBOr5YM8f0G1MdzXMpS3X0g67GZ7611Qx6c7veQewa4cSEsDJVtR60eZXg6yIk7j26QquFm2IMtVLo8Moj7RnTMJ0NnoP-JUbEFN9ZQh0OfC4vN~5mp02QGDumqjMDwPIVDJbbk2qYQRq6rTrRtkYEc5O-iqUp2ZO5N0E~cen8s6NUR0DQmSOR4fGcL027FpEOSaMN3l5UvUB74XFy9xQhACnAycbevD1YuUuoFrPTFHvYk5LonXt7w~gBSMrezZ~Y5fEJUu2dEI3-YWuO4At3fs~TUcym6f~9zbSopE797qxTnpCVAY3lusNB-ypD0O2s4SPTlr85HqjAUBUw__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/uasIN022DFyM.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=R8z87m8ABLHPs3l3qR6otizC98Q9FGqS6rO8vJPwFlvXf9dxR~Wur8qyZT8F0JbljH5ZwQSehAKsgkyxEO5Co78-i3XoSmYd2yIhkgbd~To7OfgMyZm~jDI3LojsqRIxii5NeDbAYEn0ggGVdnKopB7m8R5arJfOJP-u-9L8MXHaSAapf34AcdKXcKKq2nyJVBodF5uBNmuxwZ0-crwJB~8FFi~nksjy9JQN8uuwaTMUncq9jtat1acdUXM-z5GYvZjEEA301Nb10ateO4JtlYX2iWCV1Zb4VI-Z0cGTsLKGog7dP0xwjGlBTYF6EtXTGjV8910j20Wi1hLesrQlvA__","isEqual":false},{"path":"data.specs[1].results.screenshots[0].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[0].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[0].size","valueB":418323,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].specName","valueB":"xxx.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].duration","valueB":208,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].screenshotId","valueA":"AO_aGuj16E1ksnW4KEOXs","valueB":"W88Dz4P4pKutQcFmkvzmp","isEqual":false},{"path":"data.specs[1].results.screenshots[1].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[1].results.screenshots[1].testId","valueA":"r1","valueB":"r1","isEqual":true},{"path":"data.specs[1].results.screenshots[1].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[1].takenAt","valueA":"2023-09-07T14:43:28.809Z","valueB":"2023-09-07T15:45:18.500Z","isEqual":false},{"path":"data.specs[1].results.screenshots[1].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/BIrNIsy1KNNf.png?Expires=1694357436&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=FOoQkcYxIQFruKQU9oOxLFENAEucUvFBImI5kzSNFOCAWXyJjpPq0X7irUFh29P2MsziD~1BYIn5L0sARtKuziQ6nSurQ6K2qnIXjut15~YZiEP5i~GpmkU3ReRnAGRILJ45uR0PJN7BixP6KHfKk-mOnuYbw8fBsTT1D~JadRdxor0Nz9ieP9Y2KLv6yQwxne3u5kcSumHlFrLpXT~A6M30-2Em6kWJKkfdm~ATdzgfgbw753wq-fX36aCKQ9NBKKg6C6m8dMmTPlEGlZVtF8vOd611glURCilfsZwZJnez6Ic53W5HBNbkJdtyXLoBirCnd5dtR1Z4xdixyMYduA__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/1cbuPN1QFGat.png?Expires=1694360714&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=kqjllTKhAsMOleOwXqRLHd4zZ2-vTF915rHr9dHNtibDlmlGw9CwURfibfSv8zYYVFUuHqQP3O9m1LjwCD8LsGZGmIBzxHFDNMhxu7~PZJd5ZfUBriqVyQ-qbx~UuCd5TWbmboR2zwpDzOzp2pmy6~YOlfv4l9-yBBJuCqaXbGdfcNZMAhH3TrMr-FIQGGRTTokuxQ2N7sHVbKQWI26pcwHGZk~ajG1DvKxMg6m-qDR-6uMqabURKCsU0oaVS81fraQypvJBkzeKe05Wi4oN95Tbd2Jyuxe2mIJqjBHbBoExCg5AQOq~hiQuf6dU8O5hzfog9YZ-BY6yzzucIcQctg__","isEqual":false},{"path":"data.specs[1].results.screenshots[1].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[1].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[1].size","valueB":388041,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].specName","valueB":"xxx.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].duration","valueB":179,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.exception","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[1].results.flaky","valueA":0,"valueB":0,"isEqual":true},{"path":"data.completionState","valueA":"COMPLETE","valueB":"COMPLETE","isEqual":true},{"path":"data.status","valueA":"FAILED","valueB":"FAILED","isEqual":true}] \ No newline at end of file +[{"path":"status","valueA":"OK","valueB":"OK","isEqual":true},{"path":"data.runId","valueA":"6f943a835aca8b4f","valueB":"271a54ce36c805d4","isEqual":false},{"path":"data.projectId","valueA":"2cI1I5","valueB":"2cI1I5","isEqual":true},{"path":"data.createdAt","valueA":"2023-09-08T03:26:39.793Z","valueB":"2023-09-09T13:15:22.456Z","isEqual":false},{"path":"data.cypressVersion","valueA":"12.17.4","valueB":"12.17.4","isEqual":true},{"path":"data.cancellation","valueA":null,"valueB":null,"isEqual":true},{"path":"data.timeout.isTimeout","valueA":false,"valueB":false,"isEqual":true},{"path":"data.groups[0].groupId","valueA":"run-api-smoke-2023-09-08T03:26:36.052Z","valueB":"run-api-smoke-2023-09-09T13:15:19.184Z","isEqual":false},{"path":"data.groups[0].platform.osName","valueA":"darwin","valueB":"darwin","isEqual":true},{"path":"data.groups[0].platform.osVersion","valueA":"22.5.0","valueB":"22.5.0","isEqual":true},{"path":"data.groups[0].platform.browserName","valueA":"Electron","valueB":"Electron","isEqual":true},{"path":"data.groups[0].platform.browserVersion","valueA":"106.0.5249.51","valueB":"106.0.5249.51","isEqual":true},{"path":"data.groups[0].createdAt","valueA":"2023-09-08T03:26:39.793Z","valueB":"2023-09-09T13:15:22.456Z","isEqual":false},{"path":"data.groups[0].instances.overall","valueA":4,"valueB":4,"isEqual":true},{"path":"data.groups[0].instances.claimed","valueA":4,"valueB":4,"isEqual":true},{"path":"data.groups[0].instances.complete","valueA":4,"valueB":4,"isEqual":true},{"path":"data.groups[0].instances.passes","valueA":2,"valueB":2,"isEqual":true},{"path":"data.groups[0].instances.failures","valueA":2,"valueB":2,"isEqual":true},{"path":"data.groups[0].tests.overall","valueA":7,"valueB":7,"isEqual":true},{"path":"data.groups[0].tests.passes","valueA":4,"valueB":4,"isEqual":true},{"path":"data.groups[0].tests.failures","valueA":2,"valueB":2,"isEqual":true},{"path":"data.groups[0].tests.pending","valueA":1,"valueB":1,"isEqual":true},{"path":"data.groups[0].tests.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"data.groups[0].tests.retries","valueA":1,"valueB":1,"isEqual":true},{"path":"data.groups[0].tests.flaky","valueA":1,"valueB":1,"isEqual":true},{"path":"data.meta.ciBuildId","valueA":"run-api-smoke-2023-09-08T03:26:36.052Z","valueB":"run-api-smoke-2023-09-09T13:15:19.184Z","isEqual":false},{"path":"data.meta.commit.branch","valueA":"fix/cypress-13-validation","valueB":"fix/cypress-13-validation","isEqual":true},{"path":"data.meta.commit.remoteOrigin","valueA":null,"valueB":null,"isEqual":true},{"path":"data.meta.commit.authorEmail","valueA":"miguelangarano@gmail.com","valueB":"miguelangarano@gmail.com","isEqual":true},{"path":"data.meta.commit.authorName","valueA":"Miguel Langarano","valueB":"Miguel Langarano","isEqual":true},{"path":"data.meta.commit.message","valueA":"added viewer for results comparison\n","valueB":"automated test validation\n","isEqual":false},{"path":"data.meta.commit.sha","valueA":"675f830a7b1fb6ff74de7830a312bc8fb417f8ce","valueB":"2c08548749c6746a228f333488b335137b6d8a4a","isEqual":false},{"path":"data.meta.platform.osName","valueA":"darwin","valueB":"darwin","isEqual":true},{"path":"data.meta.platform.osVersion","valueA":"22.5.0","valueB":"22.5.0","isEqual":true},{"path":"data.meta.platform.browserName","valueA":"Electron","valueB":"Electron","isEqual":true},{"path":"data.meta.platform.browserVersion","valueA":"106.0.5249.51","valueB":"106.0.5249.51","isEqual":true},{"path":"data.specs[0].groupId","valueA":"run-api-smoke-2023-09-08T03:26:36.052Z","valueB":"run-api-smoke-2023-09-09T13:15:19.184Z","isEqual":false},{"path":"data.specs[0].spec","valueA":"cypress/e2e/a.spec.js","valueB":"cypress/e2e/a.spec.js","isEqual":true},{"path":"data.specs[0].instanceId","valueA":"UvwcsmMNZYZo","valueB":"3bDkEcnhnZ9e","isEqual":false},{"path":"data.specs[0].claimedAt","valueA":"2023-09-08T03:26:40.339Z","valueB":"2023-09-09T13:15:22.987Z","isEqual":false},{"path":"data.specs[0].completedAt","valueA":"2023-09-08T03:27:01.544Z","valueB":"2023-09-09T13:15:44.533Z","isEqual":false},{"path":"data.specs[0].machineId","valueA":"1OGNRsYXmc6T","valueB":"AWFuj0716IyK","isEqual":false},{"path":"data.specs[0].worker","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[0].results.videoUrl","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/UvwcsmMNZYZo_bhdh6SqfUfJV.mp4?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=RaYxFGecTNV3OWWxJQBTnKipuLBm-Z50XUum-NtYsqsv97HG~9BaxNBXMqaiagOKGr8zowM0zMM6nhLeoXE9g4-K8iBOAv8Ez0xASLT8fgRUA~z4PNSnv-hiuaT1m0g33~eBAI5xuk6dRLeqVf-x37Ev~xLX4bldOsSJ0HrcgfDaRpISCy8~1vumyrS9SVIS93EgCy1nOPmrlMnx-PV5M37oosKYNz3tA~YsorHcjQP~KweHerxmLhUjOyMXIuvQWe-Xaa8kCXltjys4-QSi2~pGrX8ArcDveZQ~ukUO9makARRqsoANrBm4ZUMUC2ATNvhhqNpL-98~jItDpFRRjg__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/3bDkEcnhnZ9e_W2096y1xhRmj.mp4?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=mPJ-axvoO4TLHPN8NXcrBbXlfsQJwLVTp9h1tI5NK58Jtx9tX7JbkyUqjGN2BFoa07MlfUcQxu6Ad3wt~hdDlNogPjSxZPIFQZDOstFLmjgKhsskyS9UYnFMv~evCMX18JraosDS7bz5uJ6bzJPmrcUPu2b4mcW11GK4qo-B-bsfUbOybZ9S0ClHMpWVA1GYvbYCHt0a4AOu~BdxA55-eZfKstGpi4wz9Gs1XadbNb9SIYnoV7ioi7FehB05zfaomsGz9nCTaBnr~435KladP0oYFgU10vaCeCshW3vUgaByxd51Le8eGNy0mRNHcJshANgEkvuiqsLpxUMaxnRzmA__","isEqual":false},{"path":"data.specs[0].results.stats.duration","valueA":13947,"valueB":14870,"isEqual":false},{"path":"data.specs[0].results.stats.endedAt","valueA":"2023-09-08T03:26:59.631Z","valueB":"2023-09-09T13:15:42.469Z","isEqual":false},{"path":"data.specs[0].results.stats.startedAt","valueA":"2023-09-08T03:26:45.684Z","valueB":"2023-09-09T13:15:27.599Z","isEqual":false},{"path":"data.specs[0].results.stats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[0].results.stats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[0].results.stats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[0].results.stats.wallClockDuration","valueA":13947,"valueB":14870,"isEqual":false},{"path":"data.specs[0].results.stats.wallClockStartedAt","valueA":"2023-09-08T03:26:45.684Z","valueB":"2023-09-09T13:15:27.599Z","isEqual":false},{"path":"data.specs[0].results.stats.wallClockEndedAt","valueA":"2023-09-08T03:26:59.631Z","valueB":"2023-09-09T13:15:42.469Z","isEqual":false},{"path":"data.specs[0].results.screenshots[0].screenshotId","valueA":"BhmIYMZH33yWpSIfVsDZq","valueB":"VRuw2eKqT49RduSY-vF4Z","isEqual":false},{"path":"data.specs[0].results.screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[0].results.screenshots[0].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[0].results.screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[0].takenAt","valueA":"2023-09-08T03:26:50.486Z","valueB":"2023-09-09T13:15:33.051Z","isEqual":false},{"path":"data.specs[0].results.screenshots[0].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/dh7xKpIdsolZ.png?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=EZi3YON9~M0vPswgja9~uX7l2VjyDfAXEFoahI4S4wpVFA3c~L5KWl69Lw9JcN1fpndGNU~EmFuDT6d9fh38leLrt-dtBdd98oTWsMzWCgU4huANp5gkF22n8LJ99PJqtwyxP5J9m3yHR0Sn4Tv2AQExVNtmjAWM~cJdrO0u7hEjFp5W-i~pN~-9tYvnMlT~eEDhFN057tCUx2Nqdh1s1NHdjJsJgU9F1Yr~mHvV0nzKkf9khTsEG-KeHP5VxhltQzk68QNv3ytCtpbMMpq7z7ubcJsOT7Rk8E7hbjSINt3wq69Vy0G9CDe4U3jA~cEJPVZ6pnPuaCV5TJTaFyM7~Q__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/A9G4a8ctMd13.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=wGFBj0pFBuehqoFwnd9dtjA7xfarlWweT-d8udLG2DpLPL5xJQ6FcTaSh7R62FSH5GnlIO60fFOxNHjHCLJ4m5LeUU-IX89lRdbutp3XF-l~t5T421s~EmPLv2caWTQ-sUA5JUhdoMmeOUqZNKiY~-jlQMeFxX4niuFh3p0wOxOscQjxgdUh440kx9XY8Hecn9qQZRP9x42iAjUDn8srTPVGJts5HNTrAEfBJlHKZidlyon1WN9myEb18pOqpV-12J9e1lHfVBjSPSOqX2i7grObo19XpdU1VWjDb4lSIFHXQch9961rsH9DOUyPBWkV6txxBHh8l-ok6VnJg3IVog__","isEqual":false},{"path":"data.specs[0].results.screenshots[0].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[0].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[0].size","valueB":349117,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].specName","valueB":"a.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[0].duration","valueB":303,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].screenshotId","valueA":"jyku9VtXtsjeq_eZiG3s9","valueB":"QQDhy7YciubliXABhg3Ju","isEqual":false},{"path":"data.specs[0].results.screenshots[1].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[0].results.screenshots[1].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[0].results.screenshots[1].testAttemptIndex","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[0].results.screenshots[1].takenAt","valueA":"2023-09-08T03:26:54.942Z","valueB":"2023-09-09T13:15:37.578Z","isEqual":false},{"path":"data.specs[0].results.screenshots[1].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/JGy1yDNmoM9E.png?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=eCqTDLG9IAXVXEldGbSKSOvtyYGTiVUvJv2Tgu3o5eNOHHOWsidB6-~U4wW~PKpZfftVmR5U86pJFgetOSAgc36I7BwMqo7LvAGOh92~VKthRde2hTte5NJNgjj4ZdW90uCCgkGz3SiIf~vHKK2FdosGHkWRJZChQQkOYE8iGTBMw4Iq~LIA4d70E2OubSKUbYJ-B96mL53EBQhdRfkiSUYCTpO2ReoS3sJdFJx3mGWB5AGpPsOopZa1iSYKrJsljZmuBefXKNUHKYw3cNu9K9KThtdMJAA0Kt5-EtB1u4UAGw58i1TJPV5Tc35YqK7gJmeZCu1a5j-JipBO3EreNQ__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/rJcY4a8bLgFl.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=SknNUuaQOUGcUENfPI1bZEw6sBXy5STmx9jm-etPfgYgYGYFpqYZlFQEAGPJvuFXrW0EthWkw3qmWiECceS8jn3DjpXcGKsdCj1Hr8x55CK4CSPCU~sSFsdyNLoKN5IsSZqlTVirksnYqz68JbPCQx7RzI-m-8M5cpFCkGXMl1isi-TjGaHy8BqkkGK7QCjxGTvpxVbcK3Jd35A7vMCAtBGBpJ9bGJsyi6muAh8uC3VUksYwiq3xqcuSCnnf85UYHxYVi9SgivIY4W0ln5jvxAn1I6y7fxu9ZpmEBWXfPt8Z4egpRrnOwG3n9dni1Dx2xIR5YLZfIfHqUGyngr-Fyg__","isEqual":false},{"path":"data.specs[0].results.screenshots[1].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[1].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[1].size","valueB":361908,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].specName","valueB":"a.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[1].duration","valueB":206,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].screenshotId","valueA":"2FIfErAPtl2b2vsgJQhc5","valueB":"d2WfYdznt6e6c7bNNSTND","isEqual":false},{"path":"data.specs[0].results.screenshots[2].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[0].results.screenshots[2].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[0].results.screenshots[2].testAttemptIndex","valueA":2,"valueB":2,"isEqual":true},{"path":"data.specs[0].results.screenshots[2].takenAt","valueA":"2023-09-08T03:26:59.369Z","valueB":"2023-09-09T13:15:42.210Z","isEqual":false},{"path":"data.specs[0].results.screenshots[2].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/06jiVfjeiszk.png?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=qMvUYaN0I5AgYMomaLf0L5N-~WhAVTzgRi0MZPeq1qIaa1YzqwnT8dQb~v670hIq0QIa8lnS2iCloyzJKHQPbkLq~uKx-PG8UbhBBvWWyr0NpjiZ4gUfopSj5eVnyjcDXvkBJNST8ZBuKaIjX9HL630fH9PPef5Qs3TFbxuoIB7A1xSfBLFPZGArvH3rivcNGDkZ3VLEsW1p14DhkAAsYONYtM8kLGivmzTtsFdR3i7s6cu1HIbUorIiYvisiV-hmWXfrr1FrrcXFzfogaIo1JY-Mr-HxxE3zg2vO-2-uX0d0~9kLgIEkkpieTRdVL6wJ1H03RvDZtMK38Jlm6gBRA__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/IZiGRvBJWPJ2.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=iQjTqpbAptdHvFe7PlSHeR2dJF8zwmx72gi8kwNqiBBSO-Zfz1pCUEXEukwo2YkdLWR-3aqCXqDQGU5skTpN0UBEH7LPMIEv1OE4fN1Cru0pyzgOnHVgyR47ezYtrLmCF5JjJnHTeMqIJVi7EZqDztXc9mMk~-SfR4kpIIMQqb5GpFPelWfZK6djpKviL7kQd5KhWiJ5GAsIbPwHTkotfLqCna8Mxv0ixcvVT5tfuNHZKxjwJav~slB2iK5GCiWotMrkrs5NFrPN4DeEwrSm85Hhzv~0neFwvoEz1CNd7gAz0xj2rY46jVFnBOm77TkAB5jgMgX0LdtW1RCRbtTGUQ__","isEqual":false},{"path":"data.specs[0].results.screenshots[2].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[2].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[0].results.screenshots[2].size","valueB":362007,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].specName","valueB":"a.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.screenshots[2].duration","valueB":207,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[0].results.exception","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[0].results.flaky","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].groupId","valueA":"run-api-smoke-2023-09-08T03:26:36.052Z","valueB":"run-api-smoke-2023-09-09T13:15:19.184Z","isEqual":false},{"path":"data.specs[1].spec","valueA":"cypress/e2e/b.spec.js","valueB":"cypress/e2e/b.spec.js","isEqual":true},{"path":"data.specs[1].instanceId","valueA":"zdWGdtcaCuQn","valueB":"6v5viEDI89B7","isEqual":false},{"path":"data.specs[1].claimedAt","valueA":"2023-09-08T03:26:40.357Z","valueB":"2023-09-09T13:15:54.397Z","isEqual":false},{"path":"data.specs[1].completedAt","valueA":"2023-09-08T03:27:34.715Z","valueB":"2023-09-09T13:16:21.160Z","isEqual":false},{"path":"data.specs[1].machineId","valueA":"1OGNRsYXmc6T","valueB":"AWFuj0716IyK","isEqual":false},{"path":"data.specs[1].worker","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[1].results.videoUrl","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/zdWGdtcaCuQn_8UpWRCgEUGLI.mp4?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=kU5KiY7cE84BrwFb8laM7Zl2ALxWdexwq22K-ktG5o6Q-hv-fE8Ko-fyp0VPlQmWTkQJRKq9ZpVMpe-3jaFOZOUUi9ExXfL2AfHY3cWLg8gS0-oiEDWP6S38fEloWL8QWsFV1lpT8G23LU76zzAb-IkzTQ5EumkDy1rwcY8XZ4D9O5QPCons88f9u5vacMUfGgLFXVR7MwX4HkME5PuFcaea~izao428Ff-Pg4zlUcE~2jWYQz0VGJXznu68uMC0PNINliv6Rz555Az-zblIwiaCjIobrRRCq~g1aohyppeUbD-5x2uEJ8~rOc0DOEQZMxAXmjhv02Gu3EGibQDdBg__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/6v5viEDI89B7_HAJiKAUrD25s.mp4?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=eRweUGQqt9NPKOhPy~j3BI6RR25cJVGB5tp4pl2MX2Nk~PDlBJC--TKdTIZyJ2kqA4BdPW4kvPtw8CpTQtgZalLroPi4CuykN-tsVhPfr6WXlkQC9rO6a0SDVjxg3BxH5qWLDoRaOZIq-uTdDZce4Z3-FVwYYEwtwCg4vS6pcsPEooht6OvCOy9A6rAMRj9W8lRbTRKhVVBrBE0DGy7Xb3bqtwSdIaa7yMVjc7Vcar7qAKUwA-WDReCfRuzJ3U9EL~aJt2MPqAQ-OD9-Z1joMU0oUOn1mJq~stWzCnA6lUTeM5gYlsgS3nerb3knByXwvOaTikFhJ9AplNjRUf~1Yg__","isEqual":false},{"path":"data.specs[1].results.stats.duration","valueA":20745,"valueB":20004,"isEqual":false},{"path":"data.specs[1].results.stats.endedAt","valueA":"2023-09-08T03:27:32.145Z","valueB":"2023-09-09T13:16:19.050Z","isEqual":false},{"path":"data.specs[1].results.stats.startedAt","valueA":"2023-09-08T03:27:11.400Z","valueB":"2023-09-09T13:15:59.046Z","isEqual":false},{"path":"data.specs[1].results.stats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[1].results.stats.passes","valueA":2,"valueB":2,"isEqual":true},{"path":"data.specs[1].results.stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[1].results.stats.tests","valueA":3,"valueB":3,"isEqual":true},{"path":"data.specs[1].results.stats.wallClockDuration","valueA":20745,"valueB":20004,"isEqual":false},{"path":"data.specs[1].results.stats.wallClockStartedAt","valueA":"2023-09-08T03:27:11.400Z","valueB":"2023-09-09T13:15:59.046Z","isEqual":false},{"path":"data.specs[1].results.stats.wallClockEndedAt","valueA":"2023-09-08T03:27:32.145Z","valueB":"2023-09-09T13:16:19.050Z","isEqual":false},{"path":"data.specs[1].results.screenshots[0].screenshotId","valueA":"Qj1yY2Vneuehs3CfGypSC","valueB":"zw0F-aJXnXDDfKioFBhZV","isEqual":false},{"path":"data.specs[1].results.screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[1].results.screenshots[0].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[1].results.screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[0].takenAt","valueA":"2023-09-08T03:27:15.638Z","valueB":"2023-09-09T13:16:04.433Z","isEqual":false},{"path":"data.specs[1].results.screenshots[0].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/AGusL0mLRpOv.png?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=tXlK3RlGbX0oK1Z-A8lgK4XcseRE0UH6FqBKYJ7zxTuTk2eFG46R6oGLn6JG~HEBG2kGz80iznDdQCq77ehmsnCxBf0~e8iel6kNIjImajb2XXBQVjc-NieJ7Agxlvt2KT-3Pki7YvzL5xqVzpFoNAPyKk5T~2H5A5JeSNmUUoHGlKdegeoppRH58KjojRgZU3i8fHk7j4oI4bZdLYl7vGOEUMhwECZAB3W1aBm3zve3Ij6vFRu1cMpk7SFil83MdKQo4-795Q96JWAqF3~bjhg4b4fnc7fLJQe4gKZm7t~g~EimFYDWhujXkXjBNVRpmEMqg1fa330afVwyVyG5vw__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/e2YG89w9CFnt.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=cjCTKXhLYBlf1Ts0y3RojQCBmJEHqvlesCsvEcvqjW9GgvV9dj46WyiI2Vu8UZaQrsTlTvxz1gR4Im~wBrxxlZtqsU1V620aZTEPViVLqrez5RI~ZJWI6Gme8ji03xfuSGV5tGWPhUWDTIUM4GvvkQnyAdSN~l336MBP5MKU8CialMA8ttALf46p1hnm9HKfdqYXfCnfqowkRd7IK2ixflf6zjepCHhuVbX-qaavcHsXOrZ2ZoBBjBlD19o5X8EMba7shGd5s4l5bw488trWTuhr-VvAq0SApEAOVm9JTFQtJ7uuUsZzrwLYxmI7VgeIZw~Q0mpRiQrYfAjM9gLftA__","isEqual":false},{"path":"data.specs[1].results.screenshots[0].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[0].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[0].size","valueB":374371,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].specName","valueB":"b.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[0].duration","valueB":256,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].screenshotId","valueA":"YbI1DbeNflu_3-vTrLVrV","valueB":"l-AfnNJHwvoUAYLvZ2Kpq","isEqual":false},{"path":"data.specs[1].results.screenshots[1].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[1].results.screenshots[1].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[1].results.screenshots[1].testAttemptIndex","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[1].results.screenshots[1].takenAt","valueA":"2023-09-08T03:27:20.065Z","valueB":"2023-09-09T13:16:08.927Z","isEqual":false},{"path":"data.specs[1].results.screenshots[1].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/juCd0WOBa6Gv.png?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=L3HDwbOzbcd80A1DjlqH9HO9Om9iVi9HD3gUlFms7y8v0DExYVJPuBKnhilSYSRNBjaF4cdKEiCeTRzVM2DDArpDqiFx~OR5vlzEixsC3SVNe0Op7or2dlaFka-pZVCjjFNSDx0uJS9qs5OhB93sMH340c8x57K1hdLPGbeHXr0jekc6TsLUgDi7JA85ZCa1t3BbFdbzRHfWqRaAHjIOu7kdHJYHEhh-WK2~k0KNqoq6TNLFFehEo5qdinWy8mxQmCzw~seufs-7EOnaTwlyVsMl1xlvVzm3VGU8TKVbp3jSnWLb8fdGCfUN9s3iFJYKn0ie17IitwNRdSW5-9tzug__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/TUfJcXIHm260.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=O1xc7BHTxvqm4Jb2htTRPidRkgR3ZqBvo8ntGcBlfCqQ2azZpFU4R6xbvD69gyzn1hOgDtgfUKEmGY6nn0WfZ5~oY96JWp5LEfjFbTWgKt0HJI2HlPCIUCY72mXvNZXT2k2dLSRLIl-k0pSQ3Yg~TvymzgzutoiPBJWZLKP-SZrstCebIgQychxWjUJsor6OyM~R0karI-7RHdcCIPlFIdgYSgrZ3h0j6TRbaIlo5dEth1lpBJzmESJleFC-rXzzR~0Ey3iH0vhETlp4XSlnffKzD9MS6P6fpFD2xKDQFCRHpL9AuvNyfKqIP5Hbd9sTYlPyxTzQRpHEeD9KJh6TDA__","isEqual":false},{"path":"data.specs[1].results.screenshots[1].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[1].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[1].size","valueB":377109,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].specName","valueB":"b.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[1].duration","valueB":212,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[2].screenshotId","valueA":"ysN7-f-IGi9SuBfWeh-Ln","valueB":"TS6pSw38W-AUJoX6_3Dt1","isEqual":false},{"path":"data.specs[1].results.screenshots[2].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[1].results.screenshots[2].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[1].results.screenshots[2].testAttemptIndex","valueA":2,"valueB":2,"isEqual":true},{"path":"data.specs[1].results.screenshots[2].takenAt","valueA":"2023-09-08T03:27:24.443Z","valueB":"2023-09-09T13:16:13.526Z","isEqual":false},{"path":"data.specs[1].results.screenshots[2].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/vUWYbwFRpZvK.png?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=YKiaMUdNYhNK~2YGWg0pAkjZaPW65oSWP52~lol9v9hTA91EyaQwa-ObUvYYvJhGZGb72Ddyo-UlsksY6PwwFHeW~5Rxgv3HCqY5dF2yFc63Rug8bSn9kQ6aT0Jqrlgm0J3HxEmZ2PvY7q6l5aixcZRef0HARdhK3Co743Kxb7wK73rrdifLgTUe3py5E0M9CArj1fJW6f6iZhXKdtHdSGhQz1mgOlpQtTJ2MtVvQUO8-0ERuJJ0tAT6Wi8EFunTzAmTH5KlJMH9b5bNS3AwR4pyPqG8N8y~aeHjL~zmHYE6joRmkKYye9XGGxZ2g73U2-VSZQNRST2wq5gJf6cpZg__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/ZaN8YdXL32XN.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=PaokSdQRV8O1sULTNJZSBf-i2xzyeAlMckTurwUAz-ziFSQXH4uHibGQVIxb2gX6c7yFPgqK0mWTUn~tzc42EBCXVIhnhbDxogS0B4oq49IR~M-dR1N-Y1RDx3Tdxo70izaUES-~iJPj-x1IF97kWEhFnnRpjDKpwR-SJC5Jg0Cf6Qu3vcLxW9~xpPOWHAMByILQg7g0w8jNMMsw6xyIG38Pz0orWHUm9Wq7sWoqy~JaBD55MQWDF1krul1MIQL9TDnEQ3DsDPmWLPE-fs42fOIdljA6Quol7bFmULN5EYIkA-mE7ZpoUg-1mtscT4iXn1P2ZBp04OoVVTJaG2200g__","isEqual":false},{"path":"data.specs[1].results.screenshots[2].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[2].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[2].size","valueB":376387,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[2].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[2].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[2].specName","valueB":"b.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[2].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[2].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[2].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[2].duration","valueB":212,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[3].screenshotId","valueA":"pJtB86p_uQ04UWCWJxRRU","valueB":"jZVwYU6lu6KMEmwOhHj0y","isEqual":false},{"path":"data.specs[1].results.screenshots[3].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"data.specs[1].results.screenshots[3].testId","valueA":"r2","valueB":"r2","isEqual":true},{"path":"data.specs[1].results.screenshots[3].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[3].takenAt","valueA":"2023-09-08T03:27:31.673Z","valueB":"2023-09-09T13:16:18.345Z","isEqual":false},{"path":"data.specs[1].results.screenshots[3].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/wub3R0PgzyhS.png?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=siAwsu2rDmnAOLnIcTEv1nHjUpqf1cfs3mTq4g3ivyEZL4j9SpM~i0ieQobkROGrWbeubiJKSRKnWAUgom~U33CiW~NXzjOYLEcCCOFOVg~q0YylTqWN~JsaSvlF3uxpuIDYpA1tacSQL4QkAl0bdmBBkFjei2XAPiAkdzVFEeloDbhBN7AOfQ2D5TAkCWRJW08Pm3bl7uG7wcdgGP40T0UPCOP2ABC5FhH3FwCULO8tbr2zdAapUB3NkcNscMxMCfXRGv77kFaO3o485tZoScigiGTS4FLiPTXJP40kTbURBgJ5R~Ol1Pil~szWAeMPRXw3f3WKNJOszsuDJvq6YA__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/0xdPV4FdOgfA.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=KGJTP9MazrpD-DVauoXC13O-kerEQpKUcGoAdNzUy0EfKDNdKv19Fbmhu-3jodaBkuBFfM1DZ948d1az-Nf-D60kWdTtsXCF1wVgz~Y6qTPyMklKEraJAOTGdW3rq-uOH9czEY5revFPpMPnvLrrLM6uS2uyycYF312xSYeqhCzpsrD113NLXSKuz72usBhCZo7pKf0YeqIufo5BM8f0mnaFQfouhZ8Lzh5sIcdZYEV1affq1c17WecK1iC7NhLEdkj1pY4AI4D1DTJIroTQNZ7CmdB2EipaCfI5bnrP0AkHvHxSuN-2Z7yQx0wTR8-~YigVSWdNxMUIYk0p-jlveA__","isEqual":false},{"path":"data.specs[1].results.screenshots[3].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[3].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[1].results.screenshots[3].size","valueB":380678,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[3].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[3].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[3].specName","valueB":"b.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[3].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[3].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[3].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.screenshots[3].duration","valueB":208,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[1].results.exception","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[1].results.flaky","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[2].groupId","valueA":"run-api-smoke-2023-09-08T03:26:36.052Z","valueB":"run-api-smoke-2023-09-09T13:15:19.184Z","isEqual":false},{"path":"data.specs[2].spec","valueA":"cypress/e2e/c.spec.js","valueB":"cypress/e2e/c.spec.js","isEqual":true},{"path":"data.specs[2].instanceId","valueA":"PV4tL5vDMpv9","valueB":"EZKtPsgmVMze","isEqual":false},{"path":"data.specs[2].claimedAt","valueA":"2023-09-08T03:26:40.351Z","valueB":"2023-09-09T13:15:22.999Z","isEqual":false},{"path":"data.specs[2].completedAt","valueA":"2023-09-08T03:27:10.418Z","valueB":"2023-09-09T13:15:53.983Z","isEqual":false},{"path":"data.specs[2].machineId","valueA":"1OGNRsYXmc6T","valueB":"AWFuj0716IyK","isEqual":false},{"path":"data.specs[2].worker","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[2].results.videoUrl","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/PV4tL5vDMpv9_fGFwQBQMjufh.mp4?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=rZquPnQgOf-VdFGmLzZDZ6I2a~~yxwNQ5D4hb5KYZDOclrW5bVHuEqDKza~Ii6~5vfKXUNtH~gZOGZLNm4zjCiTrI5GaplASpUdCIExaEJMqGtvpwFoDqNbDQ8fTYKMHftfFDy0eZf1ePq29gtN4D5QDrqkXoZ0k0OXxCd4MV1hnHECDAtrCIRKZtkyt4Y9FnKjc6MKLaKLyZbI1vgThaZEje73-anFYUCJaox7womBChcxJhViGuAJ2NJ38Yttk3HREG~82O7KS3F7VR7GIA~Hl-5XS0SBsVdC1mfeTJTYUE3HfGOZlD8CTEWBZRNCi7fYxlrPbYH7qX~9HOTvRlA__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/EZKtPsgmVMze_oiq63t1gBvQA.mp4?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=HcZcdEJ4eseAQy55V8jslDtI47AAALnaChvxBp-9RP7tIcP2eHc4Ce0S0F3mp2g1Xc3zQzOCOn7zfgDVffjNE2WEdaTOP8UnYQB-hteoxOF8nAnzXXxOhcD5BDP4YE2DDCb7yu1QsolhVc2tzQGckyx0iCEGtdTaP4whFMTI-xKye580hcs9LVPHRY2HP4Z~SCSCb9YfybcVBrKxtjuOg3kQDAW7VPX21kR-k4t9IaAR9ZpBgxUQIdRpLfKazqMCUjMFEbDbJKfd2Mj3MRhIn0CSeVA9rdIdZto2lvynN4xOSapiR91H2xAXacdcGqneVIxTG34ovVHeE8q3j~~u8A__","isEqual":false},{"path":"data.specs[2].results.stats.duration","valueA":53,"valueB":61,"isEqual":false},{"path":"data.specs[2].results.stats.endedAt","valueA":"2023-09-08T03:27:08.972Z","valueB":"2023-09-09T13:15:52.222Z","isEqual":false},{"path":"data.specs[2].results.stats.startedAt","valueA":"2023-09-08T03:27:08.919Z","valueB":"2023-09-09T13:15:52.161Z","isEqual":false},{"path":"data.specs[2].results.stats.failures","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[2].results.stats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[2].results.stats.pending","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[2].results.stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[2].results.stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[2].results.stats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[2].results.stats.wallClockDuration","valueA":53,"valueB":61,"isEqual":false},{"path":"data.specs[2].results.stats.wallClockStartedAt","valueA":"2023-09-08T03:27:08.919Z","valueB":"2023-09-09T13:15:52.161Z","isEqual":false},{"path":"data.specs[2].results.stats.wallClockEndedAt","valueA":"2023-09-08T03:27:08.972Z","valueB":"2023-09-09T13:15:52.222Z","isEqual":false},{"path":"data.specs[2].results.exception","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[2].results.flaky","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[3].groupId","valueA":"run-api-smoke-2023-09-08T03:26:36.052Z","valueB":"run-api-smoke-2023-09-09T13:15:19.184Z","isEqual":false},{"path":"data.specs[3].spec","valueA":"cypress/e2e/d.spec.js","valueB":"cypress/e2e/d.spec.js","isEqual":true},{"path":"data.specs[3].instanceId","valueA":"sTkPbZdVJeQH","valueB":"zf5tHsMfNljD","isEqual":false},{"path":"data.specs[3].claimedAt","valueA":"2023-09-08T03:26:40.345Z","valueB":"2023-09-09T13:15:22.993Z","isEqual":false},{"path":"data.specs[3].completedAt","valueA":"2023-09-08T03:27:07.785Z","valueB":"2023-09-09T13:15:51.393Z","isEqual":false},{"path":"data.specs[3].machineId","valueA":"1OGNRsYXmc6T","valueB":"AWFuj0716IyK","isEqual":false},{"path":"data.specs[3].worker","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[3].results.videoUrl","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/sTkPbZdVJeQH_Sg1vqs1impAS.mp4?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=C-8f3b3GdwWabJQm0cM-gzA0Va~l~SIAIuaDXHyDwhDcf5Amr86pQV2jr73dt5vsvMyOamVjPPJG-luvzwOZo5CyumMWJ9fTvn7W2Xu~en2~K0rxZK9C8oT~6FWUb46BRwPB~doa5-SYgHQndp8QcXbwWTAZReNhXsTBZOGbJWISlKctUF9YVxvQAxj9~6qrnnQyRzCyFpiWNZeL7lr9es37NtK24kBzuCnUxJ3xeXU~lz6lOxnOKus~ZQhzOIT7nueuLI7DSrzm7QILmTqEODoo4uK6fbV1XGdcusuvVTV8g4ao-DR6hqS8sh-9VWU4u0ZDxqUJ-xgK0yqnPTOfDw__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/zf5tHsMfNljD_vHmL2dIylK4P.mp4?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=OQNH57iWR6mLYfcd6Udk1q4S~IXo-RqawVc8QjCFycAFbhDxf535RCkMYd4RGMNcZbuZ9wzxFZwbg9PLaY3DS~S0~qXGqsSGVKd9WBrohH6MM56hNOZ4rPtBQ~DP-v0a8Asl~YbYDxMFS4s2IOZ73j~u6E2cehwCiJfv5vPlIzn6APT5vr0dxqioeOdrgjOEungbL2Cybuc0up0vJIHHke5qr~BBm~p3bSDboP9eJPYZQ4WTizfzoo3ABKMKXyIfOxezUYGBpCF4nnEKFIyHTsvPjGUEDf0XFdDXFBjywwFf8v5escZ12kkN5i0nH9c8hs9ZFPYur00p1hHfJduQUg__","isEqual":false},{"path":"data.specs[3].results.stats.duration","valueA":1079,"valueB":1379,"isEqual":false},{"path":"data.specs[3].results.stats.endedAt","valueA":"2023-09-08T03:27:06.029Z","valueB":"2023-09-09T13:15:49.247Z","isEqual":false},{"path":"data.specs[3].results.stats.startedAt","valueA":"2023-09-08T03:27:04.950Z","valueB":"2023-09-09T13:15:47.868Z","isEqual":false},{"path":"data.specs[3].results.stats.failures","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[3].results.stats.passes","valueA":2,"valueB":2,"isEqual":true},{"path":"data.specs[3].results.stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[3].results.stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[3].results.stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"data.specs[3].results.stats.tests","valueA":2,"valueB":2,"isEqual":true},{"path":"data.specs[3].results.stats.wallClockDuration","valueA":1079,"valueB":1379,"isEqual":false},{"path":"data.specs[3].results.stats.wallClockStartedAt","valueA":"2023-09-08T03:27:04.950Z","valueB":"2023-09-09T13:15:47.868Z","isEqual":false},{"path":"data.specs[3].results.stats.wallClockEndedAt","valueA":"2023-09-08T03:27:06.029Z","valueB":"2023-09-09T13:15:49.247Z","isEqual":false},{"path":"data.specs[3].results.screenshots[0].screenshotId","valueA":"uReGdOXki5oUZtaZ4JNQZ","valueB":"G8tnW2c46IONgreAy5UIu","isEqual":false},{"path":"data.specs[3].results.screenshots[0].name","valueA":"internal-assert-screenshot","valueB":"internal-assert-screenshot","isEqual":true},{"path":"data.specs[3].results.screenshots[0].testId","valueA":"r0","valueB":"r0","isEqual":true},{"path":"data.specs[3].results.screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[3].results.screenshots[0].takenAt","valueA":"2023-09-08T03:27:05.165Z","valueB":"2023-09-09T13:15:48.330Z","isEqual":false},{"path":"data.specs[3].results.screenshots[0].screenshotURL","valueA":"https://fs.currents.dev/64af8eee5411be7416b22d5f/zFhaTH1sV5Yb.png?Expires=1694402849&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=apRIvw~0jaY3pEvZ5IhkSiGMFdkn~oLAdQxNa7H10ESfp2yDHMDV8jhYfGMZxBMYtW2y86-vmCAbKgg8zd8m5TemSAGAf2X7PMAFwA5LJduvekk-~DL9yvmCNgarq3gKQBAFoMFNYJiv7DrFhMn0OSWugrjpjjwmtTd5zO-6bNlQ7xaKqh6DGOO2OzQ54BWXFl7f7slnyb1JJAbjDOyZ~5ifWuJE94HQguYEqDxjAp-hEq2n6sFRgcfhXbslOiv7waWt6G~-Q6Vh0TSTlTR4D6FPNJR2RfkYtmCQYp5giOSlJt2029aoTEwAyFELEs5WT4EnTD1D7EyI8sKBqn57KQ__","valueB":"https://fs.currents.dev/64af8eee5411be7416b22d5f/BjdDzqzMqS2h.png?Expires=1694524583&Key-Pair-Id=K1ZNDCCIZ3P4FU&Signature=iHg~fF-Y84PKoqTVu~98PqeJ-X5dqEhtDnOQDA8KmawjYJn9Pn92aD8GILEMOkiTcVeG2s-0iw2UZzQTbuEsxdlh~zPYmUAQPR9E~RAbDsjKMJozR9IcTqSPRm8wN7tYmsR6nLZRzyQdzeiWrKC21dx89B2y63mKO7RGYU1zu8GGTl0lUPL0AeaRz6vXTSnmBoB6lHPrjhSh7Y3ve9pkFcZRu5ZpszBSnjLi061FSYWO5NXLG1E8wIJXpnYugX39RqbnpTomdD0bN~pPUOj6KepLMH8oea~9We2iTOXxiT~RKKch7-X4IXmi6qQjYAk4x-b~L4ckaXdhhhVIn2o0ag__","isEqual":false},{"path":"data.specs[3].results.screenshots[0].height","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[3].results.screenshots[0].width","valueA":0,"valueB":0,"isEqual":true},{"path":"data.specs[3].results.screenshots[0].size","valueB":234576,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[3].results.screenshots[0].dimensions","valueB":{"width":2000,"height":1320},"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[3].results.screenshots[0].multipart","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[3].results.screenshots[0].pixelRatio","valueB":2,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[3].results.screenshots[0].specName","valueB":"d.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[3].results.screenshots[0].scaled","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[3].results.screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[3].results.screenshots[0].duration","valueB":704,"isEqual":false,"note":"Does not exist in A"},{"path":"data.specs[3].results.exception","valueA":null,"valueB":null,"isEqual":true},{"path":"data.specs[3].results.flaky","valueA":0,"valueB":0,"isEqual":true},{"path":"data.completionState","valueA":"COMPLETE","valueB":"COMPLETE","isEqual":true},{"path":"data.status","valueA":"FAILED","valueB":"FAILED","isEqual":true}] \ No newline at end of file diff --git a/e2e/cypress-13-demo/validation-results/cypress-cloud-validation.json b/e2e/cypress-13-demo/validation-results/cypress-cloud-validation.json index f645908..a3d3f3a 100644 --- a/e2e/cypress-13-demo/validation-results/cypress-cloud-validation.json +++ b/e2e/cypress-13-demo/validation-results/cypress-cloud-validation.json @@ -1 +1 @@ -[{"path":"totalDuration","valueA":14297,"valueB":13807,"isEqual":false},{"path":"totalSuites","valueA":2,"valueB":2,"isEqual":true},{"path":"totalPending","valueA":0,"valueB":0,"isEqual":true},{"path":"totalFailed","valueA":3,"valueB":3,"isEqual":true},{"path":"totalSkipped","valueA":0,"valueB":0,"isEqual":true},{"path":"totalPassed","valueA":1,"valueB":1,"isEqual":true},{"path":"totalTests","valueA":4,"valueB":4,"isEqual":true},{"path":"runs[0].stats.duration","valueA":2254,"valueB":1908,"isEqual":false},{"path":"runs[0].stats.endedAt","valueA":"2023-09-07T14:43:14.391Z","valueB":"2023-09-07T15:45:07.004Z","isEqual":false},{"path":"runs[0].stats.startedAt","valueA":"2023-09-07T14:43:12.137Z","valueB":"2023-09-07T15:45:05.096Z","isEqual":false},{"path":"runs[0].stats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].stats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].stats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].reporter","valueA":"spec","valueB":"spec","isEqual":true},{"path":"runs[0].reporterStats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].reporterStats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].reporterStats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].reporterStats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].reporterStats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].reporterStats.start","valueA":"2023-09-07T14:43:12.139Z","valueB":"2023-09-07T15:45:05.099Z","isEqual":false},{"path":"runs[0].reporterStats.end","valueA":"2023-09-07T14:43:14.394Z","valueB":"2023-09-07T15:45:07.006Z","isEqual":false},{"path":"runs[0].reporterStats.duration","valueA":2255,"valueB":1907,"isEqual":false},{"path":"runs[0].spec.fileExtension","valueA":".js","valueB":".js","isEqual":true},{"path":"runs[0].spec.baseName","valueA":"retries.spec.js","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].spec.fileName","valueA":"retries","valueB":"retries","isEqual":true},{"path":"runs[0].spec.specFileExtension","valueA":".spec.js","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].spec.relativeToCommonRoot","valueA":"retries.spec.js","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].spec.specType","valueA":"integration","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].spec.name","valueA":"cypress/e2e/retries.spec.js","valueB":"retries.spec.js","isEqual":false},{"path":"runs[0].spec.relative","valueA":"cypress/e2e/retries.spec.js","valueB":"cypress/e2e/retries.spec.js","isEqual":true},{"path":"runs[0].spec.absolute","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[0].video","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/videos/retries.spec.js.mp4","valueB":null,"isEqual":false},{"path":"runs[0].shouldUploadVideo","valueA":true,"valueB":true,"isEqual":true},{"path":"runs[0].hooks","valueA":[{"hookId":"h1","hookName":"before each","title":["\"before each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}"},{"hookId":"h2","hookName":"before each","title":["\"before each\" hook"],"body":"function () {\n cy.visit(\"/\");\n}"},{"hookId":"h4","hookName":"after each","title":["\"after each\" hook"],"body":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }"},{"hookId":"h5","hookName":"after each","title":["\"after each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}"},{"hookId":"h3","hookName":"after all","title":["\"after all\" hook"],"body":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }"}],"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].title[0]","valueA":"Retries","valueB":"Retries","isEqual":true},{"path":"runs[0].tests[0].title[1]","valueA":"Runs a test with retries","valueB":"Runs a test with retries","isEqual":true},{"path":"runs[0].tests[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].body","valueA":"function () {\n throw new Error(\"x\".repeat(1024));\n // if (i > 1) {\n // i--;\n // }\n // return;\n }","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].displayError","valueA":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-12-demo/./cypress/e2e/retries.spec.js:9:12)","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","isEqual":false},{"path":"runs[0].tests[0].attempts[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.name","valueA":"Error","valueB":"Error","isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.message","valueA":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","isEqual":false},{"path":"runs[0].tests[0].attempts[0].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/retries.spec.js:9:12)","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","isEqual":false},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.line","valueA":9,"valueB":9,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.column","valueA":13,"valueB":13,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.originalFile","valueA":"cypress/e2e/retries.spec.js","valueB":"cypress/e2e/retries.spec.js","isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.frame","valueA":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","valueB":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.lifecycle","valueA":36,"valueB":14,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.before each[0].fnDuration","valueA":19,"valueB":19,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.before each[0].afterFnDuration","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.before each[1].fnDuration","valueA":484,"valueB":415,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":1,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.test.fnDuration","valueA":5,"valueB":5,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.test.afterFnDuration","valueA":318,"valueB":240,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.after each[0].fnDuration","valueA":12,"valueB":13,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.after each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":13,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[0].wallClockStartedAt","valueA":"2023-09-07T14:43:12.160Z","valueB":"2023-09-07T15:45:05.114Z","isEqual":false},{"path":"runs[0].tests[0].attempts[0].wallClockDuration","valueA":892,"valueB":695,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].videoTimestamp","valueA":2875,"valueB":18,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].startedAt","valueA":"2023-09-07T14:43:12.160Z","valueB":"2023-09-07T15:45:05.114Z","isEqual":false},{"path":"runs[0].tests[0].attempts[0].duration","valueA":892,"valueB":695,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].screenshots[0].screenshotId","valueA":"kl773","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].takenAt","valueA":"2023-09-07T14:43:12.709Z","valueB":"2023-09-07T15:45:05.572Z","isEqual":false},{"path":"runs[0].tests[0].attempts[0].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed).png","isEqual":false},{"path":"runs[0].tests[0].attempts[0].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].size","valueB":331358,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].specName","valueB":"retries.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].duration","valueB":236,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.name","valueA":"Error","valueB":"Error","isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.message","valueA":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","isEqual":false},{"path":"runs[0].tests[0].attempts[1].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/retries.spec.js:9:12)","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","isEqual":false},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.line","valueA":9,"valueB":9,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.column","valueA":13,"valueB":13,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.originalFile","valueA":"cypress/e2e/retries.spec.js","valueB":"cypress/e2e/retries.spec.js","isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.frame","valueA":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","valueB":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.lifecycle","valueA":23,"valueB":28,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.before each[0].fnDuration","valueA":8,"valueB":19,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.before each[0].afterFnDuration","valueA":0,"valueB":1,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.before each[1].fnDuration","valueA":56,"valueB":57,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.test.fnDuration","valueA":5,"valueB":5,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.test.afterFnDuration","valueA":270,"valueB":222,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.after each[0].fnDuration","valueA":13,"valueB":12,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.after each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":17,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[1].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[1].wallClockStartedAt","valueA":"2023-09-07T14:43:13.073Z","valueB":"2023-09-07T15:45:05.864Z","isEqual":false},{"path":"runs[0].tests[0].attempts[1].wallClockDuration","valueA":396,"valueB":335,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].videoTimestamp","valueA":3788,"valueB":768,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].startedAt","valueA":"2023-09-07T14:43:13.073Z","valueB":"2023-09-07T15:45:05.864Z","isEqual":false},{"path":"runs[0].tests[0].attempts[1].duration","valueA":396,"valueB":335,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].screenshots[0].screenshotId","valueA":"k8c2c","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].testAttemptIndex","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].takenAt","valueA":"2023-09-07T14:43:13.168Z","valueB":"2023-09-07T15:45:05.978Z","isEqual":false},{"path":"runs[0].tests[0].attempts[1].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 2).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 2).png","isEqual":false},{"path":"runs[0].tests[0].attempts[1].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].size","valueB":379236,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].specName","valueB":"retries.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].duration","valueB":220,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.name","valueA":"Error","valueB":"Error","isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.message","valueA":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","isEqual":false},{"path":"runs[0].tests[0].attempts[2].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/retries.spec.js:9:12)","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","isEqual":false},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.line","valueA":9,"valueB":9,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.column","valueA":13,"valueB":13,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.originalFile","valueA":"cypress/e2e/retries.spec.js","valueB":"cypress/e2e/retries.spec.js","isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.frame","valueA":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","valueB":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.lifecycle","valueA":36,"valueB":24,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.before each[0].fnDuration","valueA":12,"valueB":10,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.before each[1].fnDuration","valueA":60,"valueB":54,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.test.fnDuration","valueA":5,"valueB":4,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.test.afterFnDuration","valueA":278,"valueB":235,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.after each[0].fnDuration","valueA":14,"valueB":15,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":22,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[2].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[2].wallClockStartedAt","valueA":"2023-09-07T14:43:13.481Z","valueB":"2023-09-07T15:45:06.247Z","isEqual":false},{"path":"runs[0].tests[0].attempts[2].wallClockDuration","valueA":428,"valueB":331,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].videoTimestamp","valueA":4196,"valueB":1151,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].startedAt","valueA":"2023-09-07T14:43:13.481Z","valueB":"2023-09-07T15:45:06.247Z","isEqual":false},{"path":"runs[0].tests[0].attempts[2].duration","valueA":428,"valueB":331,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].screenshots[0].screenshotId","valueA":"5t74s","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].testAttemptIndex","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].takenAt","valueA":"2023-09-07T14:43:13.598Z","valueB":"2023-09-07T15:45:06.347Z","isEqual":false},{"path":"runs[0].tests[0].attempts[2].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 3).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 3).png","isEqual":false},{"path":"runs[0].tests[0].attempts[2].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].size","valueB":378475,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].specName","valueB":"retries.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].duration","valueB":233,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[3].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].attempts[3].error.name","valueA":"Error","valueB":"Error","isEqual":true},{"path":"runs[0].tests[0].attempts[3].error.message","valueA":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx","isEqual":false},{"path":"runs[0].tests[0].attempts[3].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/retries.spec.js:9:12)","valueB":"Error: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/retries.spec.js:9:12)","isEqual":false},{"path":"runs[0].tests[0].attempts[3].error.codeFrame.line","valueA":9,"valueB":9,"isEqual":true},{"path":"runs[0].tests[0].attempts[3].error.codeFrame.column","valueA":13,"valueB":13,"isEqual":true},{"path":"runs[0].tests[0].attempts[3].error.codeFrame.originalFile","valueA":"cypress/e2e/retries.spec.js","valueB":"cypress/e2e/retries.spec.js","isEqual":true},{"path":"runs[0].tests[0].attempts[3].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[3].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/retries.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/retries.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[3].error.codeFrame.frame","valueA":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","valueB":" 7 | },\n 8 | function () {\n> 9 | throw new Error(\"x\".repeat(1024));\n | ^\n 10 | // if (i > 1) {\n 11 | // i--;\n 12 | // }","isEqual":true},{"path":"runs[0].tests[0].attempts[3].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[0].tests[0].attempts[3].timings.lifecycle","valueA":62,"valueB":26,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[0].tests[0].attempts[3].timings.before each[0].fnDuration","valueA":15,"valueB":14,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[3].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[0].tests[0].attempts[3].timings.before each[1].fnDuration","valueA":59,"valueB":50,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].timings.before each[1].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].timings.test.fnDuration","valueA":5,"valueB":4,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].timings.test.afterFnDuration","valueA":268,"valueB":212,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[0].tests[0].attempts[3].timings.after each[0].fnDuration","valueA":13,"valueB":12,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[3].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":22,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[3].timings.after all","valueA":[{"hookId":"h3","fnDuration":4,"afterFnDuration":0}],"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[3].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[3].wallClockStartedAt","valueA":"2023-09-07T14:43:13.922Z","valueB":"2023-09-07T15:45:06.637Z","isEqual":false},{"path":"runs[0].tests[0].attempts[3].wallClockDuration","valueA":454,"valueB":309,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].videoTimestamp","valueA":4637,"valueB":1541,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].startedAt","valueA":"2023-09-07T14:43:13.922Z","valueB":"2023-09-07T15:45:06.637Z","isEqual":false},{"path":"runs[0].tests[0].attempts[3].duration","valueA":454,"valueB":309,"isEqual":false},{"path":"runs[0].tests[0].attempts[3].screenshots[0].screenshotId","valueA":"5atgm","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[3].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[0].tests[0].attempts[3].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].attempts[3].screenshots[0].testAttemptIndex","valueA":3,"valueB":3,"isEqual":true},{"path":"runs[0].tests[0].attempts[3].screenshots[0].takenAt","valueA":"2023-09-07T14:43:14.067Z","valueB":"2023-09-07T15:45:06.735Z","isEqual":false},{"path":"runs[0].tests[0].attempts[3].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 4).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/retries.spec.js/Retries -- Runs a test with retries (failed) (attempt 4).png","isEqual":false},{"path":"runs[0].tests[0].attempts[3].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[0].tests[0].attempts[3].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[0].tests[0].attempts[3].screenshots[0].size","valueB":377835,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[3].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[3].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[3].screenshots[0].specName","valueB":"retries.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[3].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[3].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[3].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[3].screenshots[0].duration","valueB":210,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].duration","valueB":1830,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].stats.duration","valueA":12043,"valueB":11899,"isEqual":false},{"path":"runs[1].stats.endedAt","valueA":"2023-09-07T14:43:30.200Z","valueB":"2023-09-07T15:45:19.927Z","isEqual":false},{"path":"runs[1].stats.startedAt","valueA":"2023-09-07T14:43:18.157Z","valueB":"2023-09-07T15:45:08.028Z","isEqual":false},{"path":"runs[1].stats.failures","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[1].stats.passes","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[1].stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[1].stats.tests","valueA":3,"valueB":3,"isEqual":true},{"path":"runs[1].reporter","valueA":"spec","valueB":"spec","isEqual":true},{"path":"runs[1].reporterStats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[1].reporterStats.tests","valueA":3,"valueB":3,"isEqual":true},{"path":"runs[1].reporterStats.passes","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[1].reporterStats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].reporterStats.failures","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[1].reporterStats.start","valueA":"2023-09-07T14:43:18.158Z","valueB":"2023-09-07T15:45:08.032Z","isEqual":false},{"path":"runs[1].reporterStats.end","valueA":"2023-09-07T14:43:30.204Z","valueB":"2023-09-07T15:45:19.929Z","isEqual":false},{"path":"runs[1].reporterStats.duration","valueA":12046,"valueB":11897,"isEqual":false},{"path":"runs[1].spec.fileExtension","valueA":".js","valueB":".js","isEqual":true},{"path":"runs[1].spec.baseName","valueA":"xxx.spec.js","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].spec.fileName","valueA":"xxx","valueB":"xxx","isEqual":true},{"path":"runs[1].spec.specFileExtension","valueA":".spec.js","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].spec.relativeToCommonRoot","valueA":"xxx.spec.js","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].spec.specType","valueA":"integration","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].spec.name","valueA":"cypress/e2e/xxx.spec.js","valueB":"xxx.spec.js","isEqual":false},{"path":"runs[1].spec.relative","valueA":"cypress/e2e/xxx.spec.js","valueB":"cypress/e2e/xxx.spec.js","isEqual":true},{"path":"runs[1].spec.absolute","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/xxx.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","isEqual":false},{"path":"runs[1].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[1].video","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/videos/xxx.spec.js.mp4","valueB":null,"isEqual":false},{"path":"runs[1].shouldUploadVideo","valueA":true,"valueB":true,"isEqual":true},{"path":"runs[1].hooks","valueA":[{"hookId":"h1","hookName":"before each","title":["\"before each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}"},{"hookId":"h2","hookName":"before each","title":["\"before each\" hook"],"body":"function () {\n cy.visit(\"/\");\n}"},{"hookId":"h6","hookName":"before each","title":["\"before each\" hook"],"body":"function () {\n cy.createDefaultTodos().as(\"todos\");\n }"},{"hookId":"h4","hookName":"after each","title":["\"after each\" hook"],"body":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }"},{"hookId":"h5","hookName":"after each","title":["\"after each\" hook"],"body":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}"},{"hookId":"h3","hookName":"after all","title":["\"after all\" hook"],"body":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }"}],"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[1].tests[0].title[0]","valueA":"Clear completed button","valueB":"Clear completed button","isEqual":true},{"path":"runs[1].tests[0].title[1]","valueA":"should display the correct text","valueB":"should display the correct text","isEqual":true},{"path":"runs[1].tests[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[1].tests[0].body","valueA":"function () {\n cy.get(\"@todos\").eq(0).find(\".toggle\").check();\n cy.get(\".clear-completed\").contains(\"Clear completed X\");\n }","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[0].displayError","valueA":"AssertionError: Timed out retrying after 4000ms: Expected to find content: 'Clear completed X' within the element: but never did.\n at Context.eval (webpack://cypress-12-demo/./cypress/e2e/xxx.spec.js:17:33)","valueB":"AssertionError: Timed out retrying after 4000ms: Expected to find content: 'Clear completed X' within the element: but never did.\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/xxx.spec.js:17:33)","isEqual":false},{"path":"runs[1].tests[0].attempts[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[1].tests[0].attempts[0].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[1].tests[0].attempts[0].error.message","valueA":"Timed out retrying after 4000ms: Expected to find content: 'Clear completed X' within the element: but never did.","valueB":"AssertionError: Timed out retrying after 4000ms: Expected to find content: 'Clear completed X' within the element: but never did.","isEqual":false},{"path":"runs[1].tests[0].attempts[0].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/xxx.spec.js:17:33)","valueB":"AssertionError: Timed out retrying after 4000ms: Expected to find content: 'Clear completed X' within the element: but never did.\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/xxx.spec.js:17:33)","isEqual":false},{"path":"runs[1].tests[0].attempts[0].error.codeFrame.line","valueA":17,"valueB":17,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].error.codeFrame.column","valueA":34,"valueB":34,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].error.codeFrame.originalFile","valueA":"cypress/e2e/xxx.spec.js","valueB":"cypress/e2e/xxx.spec.js","isEqual":true},{"path":"runs[1].tests[0].attempts[0].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/xxx.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","isEqual":false},{"path":"runs[1].tests[0].attempts[0].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/xxx.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","isEqual":false},{"path":"runs[1].tests[0].attempts[0].error.codeFrame.frame","valueA":" 15 | function () {\n 16 | cy.get(\"@todos\").eq(0).find(\".toggle\").check();\n> 17 | cy.get(\".clear-completed\").contains(\"Clear completed X\");\n | ^\n 18 | }\n 19 | );\n 20 | ","valueB":" 15 | function () {\n 16 | cy.get(\"@todos\").eq(0).find(\".toggle\").check();\n> 17 | cy.get(\".clear-completed\").contains(\"Clear completed X\");\n | ^\n 18 | }\n 19 | );\n 20 | ","isEqual":true},{"path":"runs[1].tests[0].attempts[0].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.lifecycle","valueA":36,"valueB":31,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.before each[0].fnDuration","valueA":13,"valueB":12,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.before each[1].fnDuration","valueA":147,"valueB":134,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[1].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[2].hookId","valueA":"h6","valueB":"h6","isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.before each[2].fnDuration","valueA":842,"valueB":821,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[2].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.test.fnDuration","valueA":4097,"valueB":4093,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.test.afterFnDuration","valueA":247,"valueB":211,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.after each[0].fnDuration","valueA":14,"valueB":13,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.after each[0].afterFnDuration","valueA":0,"valueB":1,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":17,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[0].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[0].attempts[0].wallClockStartedAt","valueA":"2023-09-07T14:43:18.180Z","valueB":"2023-09-07T15:45:08.032Z","isEqual":false},{"path":"runs[1].tests[0].attempts[0].wallClockDuration","valueA":5422,"valueB":5305,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].videoTimestamp","valueA":1253,"valueB":4,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].startedAt","valueA":"2023-09-07T14:43:18.180Z","valueB":"2023-09-07T15:45:08.032Z","isEqual":false},{"path":"runs[1].tests[0].attempts[0].duration","valueA":5422,"valueB":5305,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].screenshots[0].screenshotId","valueA":"f0mre","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].takenAt","valueA":"2023-09-07T14:43:23.326Z","valueB":"2023-09-07T15:45:13.129Z","isEqual":false},{"path":"runs[1].tests[0].attempts[0].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/xxx.spec.js/Clear completed button -- should display the correct text (failed).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/xxx.spec.js/Clear completed button -- should display the correct text (failed).png","isEqual":false},{"path":"runs[1].tests[0].attempts[0].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].size","valueB":418323,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].specName","valueB":"xxx.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].duration","valueB":208,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].duration","valueB":5343,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].testId","valueA":"r4","valueB":"r4","isEqual":true},{"path":"runs[1].tests[1].title[0]","valueA":"Clear completed button","valueB":"Clear completed button","isEqual":true},{"path":"runs[1].tests[1].title[1]","valueA":"should remove completed items when clicked","valueB":"should remove completed items when clicked","isEqual":true},{"path":"runs[1].tests[1].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[1].tests[1].body","valueA":"function () {\n cy.get(\"@todos\").eq(1).find(\".toggle\").check();\n cy.get(\".clear-completed\").click();\n cy.get(\"@todos\").should(\"have.length\", 2);\n cy.get(\".todo-list li\").eq(0).should(\"contain\", TODO_ITEM_ONE);\n cy.get(\".todo-list li\").eq(1).should(\"contain\", \"XXXX\");\n }","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[1].displayError","valueA":"AssertionError: Timed out retrying after 4000ms: expected '
  • ' to contain 'item A'\n at Context.eval (webpack://cypress-12-demo/./cypress/e2e/xxx.spec.js:31:36)","valueB":"AssertionError: Timed out retrying after 4000ms: expected '
  • ' to contain 'item A'\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/xxx.spec.js:31:36)","isEqual":false},{"path":"runs[1].tests[1].attempts[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[1].tests[1].attempts[0].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[1].tests[1].attempts[0].error.message","valueA":"Timed out retrying after 4000ms: expected '
  • ' to contain 'item A'","valueB":"AssertionError: Timed out retrying after 4000ms: expected '
  • ' to contain 'item A'","isEqual":false},{"path":"runs[1].tests[1].attempts[0].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/xxx.spec.js:31:36)","valueB":"AssertionError: Timed out retrying after 4000ms: expected '
  • ' to contain 'item A'\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/xxx.spec.js:31:36)","isEqual":false},{"path":"runs[1].tests[1].attempts[0].error.codeFrame.line","valueA":31,"valueB":31,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].error.codeFrame.column","valueA":37,"valueB":37,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].error.codeFrame.originalFile","valueA":"cypress/e2e/xxx.spec.js","valueB":"cypress/e2e/xxx.spec.js","isEqual":true},{"path":"runs[1].tests[1].attempts[0].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/xxx.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","isEqual":false},{"path":"runs[1].tests[1].attempts[0].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/xxx.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/xxx.spec.js","isEqual":false},{"path":"runs[1].tests[1].attempts[0].error.codeFrame.frame","valueA":" 29 | cy.get(\".clear-completed\").click();\n 30 | cy.get(\"@todos\").should(\"have.length\", 2);\n> 31 | cy.get(\".todo-list li\").eq(0).should(\"contain\", TODO_ITEM_ONE);\n | ^\n 32 | cy.get(\".todo-list li\").eq(1).should(\"contain\", \"XXXX\");\n 33 | }\n 34 | );","valueB":" 29 | cy.get(\".clear-completed\").click();\n 30 | cy.get(\"@todos\").should(\"have.length\", 2);\n> 31 | cy.get(\".todo-list li\").eq(0).should(\"contain\", TODO_ITEM_ONE);\n | ^\n 32 | cy.get(\".todo-list li\").eq(1).should(\"contain\", \"XXXX\");\n 33 | }\n 34 | );","isEqual":true},{"path":"runs[1].tests[1].attempts[0].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.lifecycle","valueA":27,"valueB":17,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.before each[0].fnDuration","valueA":15,"valueB":18,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.before each[1].fnDuration","valueA":84,"valueB":49,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.before each[2].hookId","valueA":"h6","valueB":"h6","isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.before each[2].fnDuration","valueA":903,"valueB":865,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.before each[2].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.test.fnDuration","valueA":4151,"valueB":4148,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.test.afterFnDuration","valueA":211,"valueB":182,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.after each[0].fnDuration","valueA":15,"valueB":15,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":12,"afterFnDuration":1},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[1].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[1].attempts[0].wallClockStartedAt","valueA":"2023-09-07T14:43:23.625Z","valueB":"2023-09-07T15:45:13.398Z","isEqual":false},{"path":"runs[1].tests[1].attempts[0].wallClockDuration","valueA":5421,"valueB":5282,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].videoTimestamp","valueA":6698,"valueB":5370,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].startedAt","valueA":"2023-09-07T14:43:23.625Z","valueB":"2023-09-07T15:45:13.398Z","isEqual":false},{"path":"runs[1].tests[1].attempts[0].duration","valueA":5421,"valueB":5282,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].screenshots[0].screenshotId","valueA":"a52go","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[1].attempts[0].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[1].tests[1].attempts[0].screenshots[0].testId","valueA":"r4","valueB":"r4","isEqual":true},{"path":"runs[1].tests[1].attempts[0].screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].screenshots[0].takenAt","valueA":"2023-09-07T14:43:28.809Z","valueB":"2023-09-07T15:45:18.500Z","isEqual":false},{"path":"runs[1].tests[1].attempts[0].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/xxx.spec.js/Clear completed button -- should remove completed items when clicked (failed).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/xxx.spec.js/Clear completed button -- should remove completed items when clicked (failed).png","isEqual":false},{"path":"runs[1].tests[1].attempts[0].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].screenshots[0].size","valueB":388041,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].attempts[0].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].attempts[0].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].attempts[0].screenshots[0].specName","valueB":"xxx.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].attempts[0].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].attempts[0].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].attempts[0].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].attempts[0].screenshots[0].duration","valueB":179,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].duration","valueB":5329,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[2].testId","valueA":"r5","valueB":"r5","isEqual":true},{"path":"runs[1].tests[2].title[0]","valueA":"Clear completed button","valueB":"Clear completed button","isEqual":true},{"path":"runs[1].tests[2].title[1]","valueA":"should be hidden when there are no items that are completed","valueB":"should be hidden when there are no items that are completed","isEqual":true},{"path":"runs[1].tests[2].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[1].tests[2].body","valueA":"function () {\n cy.get(\"@todos\").eq(1).find(\".toggle\").check();\n cy.get(\".clear-completed\").should(\"be.visible\").click();\n cy.get(\".clear-completed\").should(\"not.be.visible\");\n }","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[2].displayError","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[1].tests[2].attempts[0].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[1].tests[2].attempts[0].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.lifecycle","valueA":32,"valueB":26,"isEqual":false},{"path":"runs[1].tests[2].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.before each[0].fnDuration","valueA":7,"valueB":10,"isEqual":false},{"path":"runs[1].tests[2].attempts[0].timings.before each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[1].tests[2].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.before each[1].fnDuration","valueA":55,"valueB":91,"isEqual":false},{"path":"runs[1].tests[2].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.before each[2].hookId","valueA":"h6","valueB":"h6","isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.before each[2].fnDuration","valueA":857,"valueB":867,"isEqual":false},{"path":"runs[1].tests[2].attempts[0].timings.before each[2].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.test.fnDuration","valueA":156,"valueB":152,"isEqual":false},{"path":"runs[1].tests[2].attempts[0].timings.test.afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.after each[0].fnDuration","valueA":12,"valueB":12,"isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[2].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":10,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[2].attempts[0].timings.after all","valueA":[{"hookId":"h3","fnDuration":5,"afterFnDuration":0}],"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[2].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[2].attempts[0].wallClockStartedAt","valueA":"2023-09-07T14:43:29.058Z","valueB":"2023-09-07T15:45:18.738Z","isEqual":false},{"path":"runs[1].tests[2].attempts[0].wallClockDuration","valueA":1141,"valueB":1148,"isEqual":false},{"path":"runs[1].tests[2].attempts[0].videoTimestamp","valueA":12131,"valueB":10710,"isEqual":false},{"path":"runs[1].tests[2].attempts[0].startedAt","valueA":"2023-09-07T14:43:29.058Z","valueB":"2023-09-07T15:45:18.738Z","isEqual":false},{"path":"runs[1].tests[2].attempts[0].duration","valueA":1141,"valueB":1148,"isEqual":false},{"path":"runs[1].tests[2].duration","valueB":1188,"isEqual":false,"note":"Does not exist in A"},{"path":"startedTestsAt","valueA":"2023-09-07T14:43:12.137Z","valueB":"2023-09-07T15:45:05.096Z","isEqual":false},{"path":"endedTestsAt","valueA":"2023-09-07T14:43:30.200Z","valueB":"2023-09-07T15:45:19.927Z","isEqual":false},{"path":"config.animationDistanceThreshold","valueA":5,"valueB":5,"isEqual":true},{"path":"config.arch","valueA":"arm64","valueB":"arm64","isEqual":true},{"path":"config.autoOpen","valueA":false,"valueB":false,"isEqual":true},{"path":"config.baseUrl","valueA":"https://todomvc.com/examples/vanillajs","valueB":"https://todomvc.com/examples/vanillajs","isEqual":true},{"path":"config.blockHosts","valueA":null,"valueB":null,"isEqual":true},{"path":"config.browsers[0].name","valueA":"chrome","valueB":"chrome","isEqual":true},{"path":"config.browsers[0].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.browsers[0].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.browsers[0].displayName","valueA":"Chrome","valueB":"Chrome","isEqual":true},{"path":"config.browsers[0].version","valueA":"116.0.5845.179","valueB":"116.0.5845.179","isEqual":true},{"path":"config.browsers[0].path","valueA":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","valueB":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","isEqual":true},{"path":"config.browsers[0].minSupportedVersion","valueA":64,"valueB":64,"isEqual":true},{"path":"config.browsers[0].majorVersion","valueA":"116","valueB":"116","isEqual":true},{"path":"config.browsers[1].name","valueA":"edge","valueB":"edge","isEqual":true},{"path":"config.browsers[1].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.browsers[1].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.browsers[1].displayName","valueA":"Edge","valueB":"Edge","isEqual":true},{"path":"config.browsers[1].version","valueA":"116.0.1938.69","valueB":"116.0.1938.69","isEqual":true},{"path":"config.browsers[1].path","valueA":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","valueB":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","isEqual":true},{"path":"config.browsers[1].minSupportedVersion","valueA":79,"valueB":79,"isEqual":true},{"path":"config.browsers[1].majorVersion","valueA":"116","valueB":"116","isEqual":true},{"path":"config.browsers[2].name","valueA":"electron","valueB":"electron","isEqual":true},{"path":"config.browsers[2].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.browsers[2].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.browsers[2].displayName","valueA":"Electron","valueB":"Electron","isEqual":true},{"path":"config.browsers[2].version","valueA":"106.0.5249.51","valueB":"106.0.5249.51","isEqual":true},{"path":"config.browsers[2].path","valueA":"","valueB":"","isEqual":true},{"path":"config.browsers[2].majorVersion","valueA":106,"valueB":106,"isEqual":true},{"path":"config.chromeWebSecurity","valueA":true,"valueB":true,"isEqual":true},{"path":"config.clientRoute","valueA":"/__/","valueB":"/__/","isEqual":true},{"path":"config.configFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress.config.ts","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress.config.ts","isEqual":false},{"path":"config.cypressBinaryRoot","valueA":"/Users/miguelangarano/Library/Caches/Cypress/12.17.4/Cypress.app/Contents/Resources/app","valueB":"/Users/miguelangarano/Library/Caches/Cypress/13.1.0/Cypress.app/Contents/Resources/app","isEqual":false},{"path":"config.cypressEnv","valueA":"production","valueB":"production","isEqual":true},{"path":"config.defaultCommandTimeout","valueA":4000,"valueB":4000,"isEqual":true},{"path":"config.devServerPublicPathRoute","valueA":"/__cypress/src","valueB":"/__cypress/src","isEqual":true},{"path":"config.downloadsFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/downloads","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/downloads","isEqual":false},{"path":"config.env.currents_temp_file","valueA":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-53115-v88g9H7kmSJg","valueB":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-84752-d4apSw3XIvZ1","isEqual":false},{"path":"config.env.currents_debug_enabled","valueA":false,"valueB":false,"isEqual":true},{"path":"config.excludeSpecPattern","valueA":"*.hot-update.js","valueB":"*.hot-update.js","isEqual":true},{"path":"config.execTimeout","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.experimentalCspAllowList","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalFetchPolyfill","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalInteractiveRunEvents","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalMemoryManagement","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalModifyObstructiveThirdPartyCode","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalOriginDependencies","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalRunAllSpecs","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalSingleTabRunMode","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalSkipDomainInjection","valueA":null,"valueB":null,"isEqual":true},{"path":"config.experimentalSourceRewriting","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalStudio","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalWebKitSupport","valueA":false,"valueB":false,"isEqual":true},{"path":"config.fileServerFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","isEqual":false},{"path":"config.fixturesFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/fixtures","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/fixtures","isEqual":false},{"path":"config.hosts","valueA":null,"valueB":null,"isEqual":true},{"path":"config.includeShadowDom","valueA":false,"valueB":false,"isEqual":true},{"path":"config.isInteractive","valueA":true,"valueB":true,"isEqual":true},{"path":"config.isTextTerminal","valueA":true,"valueB":true,"isEqual":true},{"path":"config.keystrokeDelay","valueA":0,"valueB":0,"isEqual":true},{"path":"config.modifyObstructiveCode","valueA":true,"valueB":true,"isEqual":true},{"path":"config.morgan","valueA":false,"valueB":false,"isEqual":true},{"path":"config.namespace","valueA":"__cypress","valueB":"__cypress","isEqual":true},{"path":"config.numTestsKeptInMemory","valueA":0,"valueB":0,"isEqual":true},{"path":"config.pageLoadTimeout","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.platform","valueA":"darwin","valueB":"darwin","isEqual":true},{"path":"config.port","valueA":null,"valueB":null,"isEqual":true},{"path":"config.projectId","valueA":null,"valueB":null,"isEqual":true},{"path":"config.projectName","valueA":"cypress-12-demo","valueB":"cypress-13-demo","isEqual":false},{"path":"config.projectRoot","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","isEqual":false},{"path":"config.rawJson.e2e.baseUrl","valueA":"https://todomvc.com/examples/vanillajs","valueB":"https://todomvc.com/examples/vanillajs","isEqual":true},{"path":"config.rawJson.e2e.supportFile","valueA":"cypress/support/e2e.ts","valueB":"cypress/support/e2e.ts","isEqual":true},{"path":"config.rawJson.e2e.specPattern","valueA":"cypress/*/**/*.spec.js","valueB":"cypress/*/**/*.spec.js","isEqual":true},{"path":"config.rawJson.e2e.setupNodeEvents","valueA":"[Function setupNodeEvents]","valueB":"[Function setupNodeEvents]","isEqual":true},{"path":"config.rawJson.component.specPattern[0]","valueA":"pages/__tests__/*.spec.tsx","valueB":"pages/__tests__/*.spec.tsx","isEqual":true},{"path":"config.rawJson.component.setupNodeEvents","valueA":"[Function setupNodeEvents]","valueB":"[Function setupNodeEvents]","isEqual":true},{"path":"config.rawJson.component.devServer.framework","valueA":"next","valueB":"next","isEqual":true},{"path":"config.rawJson.component.devServer.bundler","valueA":"webpack","valueB":"webpack","isEqual":true},{"path":"config.rawJson.baseUrl","valueA":"https://todomvc.com/examples/vanillajs","valueB":"https://todomvc.com/examples/vanillajs","isEqual":true},{"path":"config.rawJson.supportFile","valueA":"cypress/support/e2e.ts","valueB":"cypress/support/e2e.ts","isEqual":true},{"path":"config.rawJson.specPattern","valueA":"cypress/*/**/*.spec.js","valueB":"cypress/*/**/*.spec.js","isEqual":true},{"path":"config.rawJson.setupNodeEvents","valueA":"[Function setupNodeEvents]","valueB":"[Function setupNodeEvents]","isEqual":true},{"path":"config.rawJson.projectRoot","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","isEqual":false},{"path":"config.rawJson.projectName","valueA":"cypress-12-demo","valueB":"cypress-13-demo","isEqual":false},{"path":"config.rawJson.repoRoot","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","isEqual":true},{"path":"config.redirectionLimit","valueA":20,"valueB":20,"isEqual":true},{"path":"config.repoRoot","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","isEqual":true},{"path":"config.report","valueA":true,"valueB":true,"isEqual":true},{"path":"config.reporter","valueA":"spec","valueB":"spec","isEqual":true},{"path":"config.reporterOptions","valueA":null,"valueB":null,"isEqual":true},{"path":"config.reporterRoute","valueA":"/__cypress/reporter","valueB":"/__cypress/reporter","isEqual":true},{"path":"config.requestTimeout","valueA":5000,"valueB":5000,"isEqual":true},{"path":"config.resolved.animationDistanceThreshold.value","valueA":5,"valueB":5,"isEqual":true},{"path":"config.resolved.animationDistanceThreshold.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.arch.value","valueA":"arm64","valueB":"arm64","isEqual":true},{"path":"config.resolved.arch.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.baseUrl.value","valueA":"https://todomvc.com/examples/vanillajs","valueB":"https://todomvc.com/examples/vanillajs","isEqual":true},{"path":"config.resolved.baseUrl.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.blockHosts.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.blockHosts.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.chromeWebSecurity.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.chromeWebSecurity.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.clientCertificates.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.defaultCommandTimeout.value","valueA":4000,"valueB":4000,"isEqual":true},{"path":"config.resolved.defaultCommandTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.downloadsFolder.value","valueA":"cypress/downloads","valueB":"cypress/downloads","isEqual":true},{"path":"config.resolved.downloadsFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.env.currents_temp_file.value","valueA":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-53115-v88g9H7kmSJg","valueB":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-84752-d4apSw3XIvZ1","isEqual":false},{"path":"config.resolved.env.currents_temp_file.from","valueA":"cli","valueB":"cli","isEqual":true},{"path":"config.resolved.env.currents_debug_enabled.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.env.currents_debug_enabled.from","valueA":"cli","valueB":"cli","isEqual":true},{"path":"config.resolved.execTimeout.value","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.resolved.execTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalCspAllowList.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalCspAllowList.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalFetchPolyfill.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalFetchPolyfill.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalInteractiveRunEvents.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalInteractiveRunEvents.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalRunAllSpecs.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalRunAllSpecs.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalMemoryManagement.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalMemoryManagement.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalModifyObstructiveThirdPartyCode.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalModifyObstructiveThirdPartyCode.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalSkipDomainInjection.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.experimentalSkipDomainInjection.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalOriginDependencies.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalOriginDependencies.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalSourceRewriting.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalSourceRewriting.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalSingleTabRunMode.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalSingleTabRunMode.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalStudio.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalStudio.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalWebKitSupport.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalWebKitSupport.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.fileServerFolder.value","valueA":"","valueB":"","isEqual":true},{"path":"config.resolved.fileServerFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.fixturesFolder.value","valueA":"cypress/fixtures","valueB":"cypress/fixtures","isEqual":true},{"path":"config.resolved.fixturesFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.excludeSpecPattern.value","valueA":"*.hot-update.js","valueB":"*.hot-update.js","isEqual":true},{"path":"config.resolved.excludeSpecPattern.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.includeShadowDom.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.includeShadowDom.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.keystrokeDelay.value","valueA":0,"valueB":0,"isEqual":true},{"path":"config.resolved.keystrokeDelay.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.modifyObstructiveCode.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.modifyObstructiveCode.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.nodeVersion","valueA":{"from":"default"},"isEqual":false,"note":"Does not exist in B"},{"path":"config.resolved.numTestsKeptInMemory.value","valueA":0,"valueB":0,"isEqual":true},{"path":"config.resolved.numTestsKeptInMemory.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.platform.value","valueA":"darwin","valueB":"darwin","isEqual":true},{"path":"config.resolved.platform.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.pageLoadTimeout.value","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.resolved.pageLoadTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.port.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.port.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.projectId.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.projectId.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.redirectionLimit.value","valueA":20,"valueB":20,"isEqual":true},{"path":"config.resolved.redirectionLimit.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.reporter.value","valueA":"spec","valueB":"spec","isEqual":true},{"path":"config.resolved.reporter.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.reporterOptions.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.reporterOptions.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.requestTimeout.value","valueA":5000,"valueB":5000,"isEqual":true},{"path":"config.resolved.requestTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.resolvedNodePath.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.resolvedNodePath.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.resolvedNodeVersion.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.resolvedNodeVersion.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.responseTimeout.value","valueA":30000,"valueB":30000,"isEqual":true},{"path":"config.resolved.responseTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.retries.value.runMode","valueA":0,"valueB":0,"isEqual":true},{"path":"config.resolved.retries.value.openMode","valueA":0,"valueB":0,"isEqual":true},{"path":"config.resolved.retries.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.screenshotOnRunFailure.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.screenshotOnRunFailure.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.screenshotsFolder.value","valueA":"cypress/screenshots","valueB":"cypress/screenshots","isEqual":true},{"path":"config.resolved.screenshotsFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.slowTestThreshold.value","valueA":10000,"valueB":10000,"isEqual":true},{"path":"config.resolved.slowTestThreshold.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.scrollBehavior.value","valueA":"top","valueB":"top","isEqual":true},{"path":"config.resolved.scrollBehavior.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.supportFile.value","valueA":"cypress/support/e2e.ts","valueB":"cypress/support/e2e.ts","isEqual":true},{"path":"config.resolved.supportFile.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.supportFolder.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.supportFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.taskTimeout.value","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.resolved.taskTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.testIsolation.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.testIsolation.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.trashAssetsBeforeRuns.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.trashAssetsBeforeRuns.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.userAgent.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.userAgent.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.video.value","valueA":true,"valueB":false,"isEqual":false},{"path":"config.resolved.video.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.videoCompression.value","valueA":32,"valueB":false,"isEqual":false},{"path":"config.resolved.videoCompression.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.videosFolder.value","valueA":"cypress/videos","valueB":"cypress/videos","isEqual":true},{"path":"config.resolved.videosFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.videoUploadOnPasses","valueA":{"value":true,"from":"default"},"isEqual":false,"note":"Does not exist in B"},{"path":"config.resolved.viewportHeight.value","valueA":660,"valueB":660,"isEqual":true},{"path":"config.resolved.viewportHeight.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.viewportWidth.value","valueA":1000,"valueB":1000,"isEqual":true},{"path":"config.resolved.viewportWidth.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.waitForAnimations.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.waitForAnimations.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.watchForFileChanges.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.watchForFileChanges.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.specPattern.value","valueA":"cypress/*/**/*.spec.js","valueB":"cypress/*/**/*.spec.js","isEqual":true},{"path":"config.resolved.specPattern.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.browsers.value[0].name","valueA":"chrome","valueB":"chrome","isEqual":true},{"path":"config.resolved.browsers.value[0].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.resolved.browsers.value[0].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.resolved.browsers.value[0].displayName","valueA":"Chrome","valueB":"Chrome","isEqual":true},{"path":"config.resolved.browsers.value[0].version","valueA":"116.0.5845.179","valueB":"116.0.5845.179","isEqual":true},{"path":"config.resolved.browsers.value[0].path","valueA":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","valueB":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","isEqual":true},{"path":"config.resolved.browsers.value[0].minSupportedVersion","valueA":64,"valueB":64,"isEqual":true},{"path":"config.resolved.browsers.value[0].majorVersion","valueA":"116","valueB":"116","isEqual":true},{"path":"config.resolved.browsers.value[1].name","valueA":"edge","valueB":"edge","isEqual":true},{"path":"config.resolved.browsers.value[1].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.resolved.browsers.value[1].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.resolved.browsers.value[1].displayName","valueA":"Edge","valueB":"Edge","isEqual":true},{"path":"config.resolved.browsers.value[1].version","valueA":"116.0.1938.69","valueB":"116.0.1938.69","isEqual":true},{"path":"config.resolved.browsers.value[1].path","valueA":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","valueB":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","isEqual":true},{"path":"config.resolved.browsers.value[1].minSupportedVersion","valueA":79,"valueB":79,"isEqual":true},{"path":"config.resolved.browsers.value[1].majorVersion","valueA":"116","valueB":"116","isEqual":true},{"path":"config.resolved.browsers.value[2].name","valueA":"electron","valueB":"electron","isEqual":true},{"path":"config.resolved.browsers.value[2].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.resolved.browsers.value[2].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.resolved.browsers.value[2].displayName","valueA":"Electron","valueB":"Electron","isEqual":true},{"path":"config.resolved.browsers.value[2].version","valueA":"106.0.5249.51","valueB":"106.0.5249.51","isEqual":true},{"path":"config.resolved.browsers.value[2].path","valueA":"","valueB":"","isEqual":true},{"path":"config.resolved.browsers.value[2].majorVersion","valueA":106,"valueB":106,"isEqual":true},{"path":"config.resolved.browsers.from","valueA":"runtime","valueB":"runtime","isEqual":true},{"path":"config.resolved.hosts.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.hosts.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.isInteractive.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.isInteractive.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolvedNodePath","valueA":"/Users/miguelangarano/.nvm/versions/node/v18.14.2/bin/node","valueB":"/Users/miguelangarano/.nvm/versions/node/v18.14.2/bin/node","isEqual":true},{"path":"config.resolvedNodeVersion","valueA":"18.14.2","valueB":"18.14.2","isEqual":true},{"path":"config.responseTimeout","valueA":30000,"valueB":30000,"isEqual":true},{"path":"config.retries.runMode","valueA":0,"valueB":0,"isEqual":true},{"path":"config.retries.openMode","valueA":0,"valueB":0,"isEqual":true},{"path":"config.screenshotOnRunFailure","valueA":true,"valueB":true,"isEqual":true},{"path":"config.screenshotsFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots","isEqual":false},{"path":"config.scrollBehavior","valueA":"top","valueB":"top","isEqual":true},{"path":"config.setupNodeEvents","valueA":"[Function setupNodeEvents]","valueB":"[Function setupNodeEvents]","isEqual":true},{"path":"config.slowTestThreshold","valueA":10000,"valueB":10000,"isEqual":true},{"path":"config.socketId","valueA":"svnqisky8l","valueB":"4tp88ruxjj","isEqual":false},{"path":"config.socketIoCookie","valueA":"__socket","valueB":"__socket","isEqual":true},{"path":"config.socketIoRoute","valueA":"/__socket","valueB":"/__socket","isEqual":true},{"path":"config.specPattern","valueA":"cypress/*/**/*.spec.js","valueB":"cypress/*/**/*.spec.js","isEqual":true},{"path":"config.supportFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/support/e2e.ts","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/support/e2e.ts","isEqual":false},{"path":"config.supportFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/support","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/support","isEqual":false},{"path":"config.taskTimeout","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.testIsolation","valueA":true,"valueB":true,"isEqual":true},{"path":"config.trashAssetsBeforeRuns","valueA":true,"valueB":true,"isEqual":true},{"path":"config.userAgent","valueA":null,"valueB":null,"isEqual":true},{"path":"config.version","valueA":"12.17.4","valueB":"13.1.0","isEqual":false},{"path":"config.video","valueA":true,"valueB":false,"isEqual":false},{"path":"config.videoCompression","valueA":32,"valueB":false,"isEqual":false},{"path":"config.videoUploadOnPasses","valueA":true,"isEqual":false,"note":"Does not exist in B"},{"path":"config.videosFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/videos","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos","isEqual":false},{"path":"config.viewportHeight","valueA":660,"valueB":660,"isEqual":true},{"path":"config.viewportWidth","valueA":1000,"valueB":1000,"isEqual":true},{"path":"config.waitForAnimations","valueA":true,"valueB":true,"isEqual":true},{"path":"config.watchForFileChanges","valueA":false,"valueB":false,"isEqual":true},{"path":"config.testingType","valueA":"e2e","valueB":"e2e","isEqual":true},{"path":"config.hideCommandLog","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"config.hideRunnerUi","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"config.protocolEnabled","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"status","valueA":"finished","valueB":"finished","isEqual":true},{"path":"runUrl","valueA":"https://app.currents.dev/run/8bca8d1e39c70474","valueB":"https://app.currents.dev/run/6c996f69397aa4f2","isEqual":false}] \ No newline at end of file +[{"path":"totalDuration","valueA":35824,"valueB":36314,"isEqual":false},{"path":"totalSuites","valueA":4,"valueB":4,"isEqual":true},{"path":"totalPending","valueA":1,"valueB":1,"isEqual":true},{"path":"totalFailed","valueA":2,"valueB":2,"isEqual":true},{"path":"totalSkipped","valueA":0,"valueB":0,"isEqual":true},{"path":"totalPassed","valueA":4,"valueB":4,"isEqual":true},{"path":"totalTests","valueA":7,"valueB":7,"isEqual":true},{"path":"runs[0].stats.duration","valueA":13947,"valueB":14870,"isEqual":false},{"path":"runs[0].stats.endedAt","valueA":"2023-09-08T03:26:59.631Z","valueB":"2023-09-09T13:15:42.469Z","isEqual":false},{"path":"runs[0].stats.startedAt","valueA":"2023-09-08T03:26:45.684Z","valueB":"2023-09-09T13:15:27.599Z","isEqual":false},{"path":"runs[0].stats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].stats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].stats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].reporter","valueA":"spec","valueB":"spec","isEqual":true},{"path":"runs[0].reporterStats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].reporterStats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].reporterStats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].reporterStats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].reporterStats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].reporterStats.start","valueA":"2023-09-08T03:26:45.686Z","valueB":"2023-09-09T13:15:27.601Z","isEqual":false},{"path":"runs[0].reporterStats.end","valueA":"2023-09-08T03:26:59.644Z","valueB":"2023-09-09T13:15:42.481Z","isEqual":false},{"path":"runs[0].reporterStats.duration","valueA":13958,"valueB":14880,"isEqual":false},{"path":"runs[0].spec.fileExtension","valueA":".js","valueB":".js","isEqual":true},{"path":"runs[0].spec.baseName","valueA":"a.spec.js","valueB":"a.spec.js","isEqual":true},{"path":"runs[0].spec.fileName","valueA":"a","valueB":"a","isEqual":true},{"path":"runs[0].spec.specFileExtension","valueA":".spec.js","valueB":".spec.js","isEqual":true},{"path":"runs[0].spec.relativeToCommonRoot","valueA":"a.spec.js","valueB":"a.spec.js","isEqual":true},{"path":"runs[0].spec.specType","valueA":"integration","valueB":"integration","isEqual":true},{"path":"runs[0].spec.name","valueA":"cypress/e2e/a.spec.js","valueB":"cypress/e2e/a.spec.js","isEqual":true},{"path":"runs[0].spec.relative","valueA":"cypress/e2e/a.spec.js","valueB":"cypress/e2e/a.spec.js","isEqual":true},{"path":"runs[0].spec.absolute","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/a.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/a.spec.js","isEqual":false},{"path":"runs[0].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[0].video","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/videos/a.spec.js.mp4","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos/a.spec.js.mp4","isEqual":false},{"path":"runs[0].shouldUploadVideo","valueA":true,"valueB":true,"isEqual":true},{"path":"runs[0].hooks[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[0].hooks[0].hookName","valueA":"before each","valueB":"before each","isEqual":true},{"path":"runs[0].hooks[0].title[0]","valueA":"\"before each\" hook","valueB":"\"before each\" hook","isEqual":true},{"path":"runs[0].hooks[0].body","valueA":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}","valueB":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}","isEqual":true},{"path":"runs[0].hooks[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[0].hooks[1].hookName","valueA":"before each","valueB":"before each","isEqual":true},{"path":"runs[0].hooks[1].title[0]","valueA":"\"before each\" hook","valueB":"\"before each\" hook","isEqual":true},{"path":"runs[0].hooks[1].body","valueA":"function () {\n cy.visit(\"/\");\n}","valueB":"function () {\n cy.visit(\"/\");\n}","isEqual":true},{"path":"runs[0].hooks[2].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[0].hooks[2].hookName","valueA":"after each","valueB":"after each","isEqual":true},{"path":"runs[0].hooks[2].title[0]","valueA":"\"after each\" hook","valueB":"\"after each\" hook","isEqual":true},{"path":"runs[0].hooks[2].body","valueA":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }","valueB":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }","isEqual":true},{"path":"runs[0].hooks[3].hookId","valueA":"h5","valueB":"h5","isEqual":true},{"path":"runs[0].hooks[3].hookName","valueA":"after each","valueB":"after each","isEqual":true},{"path":"runs[0].hooks[3].title[0]","valueA":"\"after each\" hook","valueB":"\"after each\" hook","isEqual":true},{"path":"runs[0].hooks[3].body","valueA":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}","valueB":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}","isEqual":true},{"path":"runs[0].hooks[4].hookId","valueA":"h3","valueB":"h3","isEqual":true},{"path":"runs[0].hooks[4].hookName","valueA":"after all","valueB":"after all","isEqual":true},{"path":"runs[0].hooks[4].title[0]","valueA":"\"after all\" hook","valueB":"\"after all\" hook","isEqual":true},{"path":"runs[0].hooks[4].body","valueA":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }","valueB":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }","isEqual":true},{"path":"runs[0].tests[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].title[0]","valueA":"Failing test with 2 attempts","valueB":"Failing test with 2 attempts","isEqual":true},{"path":"runs[0].tests[0].title[1]","valueA":"should try 2 times","valueB":"should try 2 times","isEqual":true},{"path":"runs[0].tests[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].body","valueA":"() => {\n cy.wrap(false).should('be.true');\n }","valueB":"() => {\n cy.wrap(false).should('be.true');\n }","isEqual":true},{"path":"runs[0].tests[0].displayError","valueA":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-12-demo/./cypress/e2e/a.spec.js:5:19)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/a.spec.js:5:19)","isEqual":false},{"path":"runs[0].tests[0].attempts[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.message","valueA":"Timed out retrying after 4000ms: expected false to be true","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true","isEqual":false},{"path":"runs[0].tests[0].attempts[0].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/a.spec.js:5:19)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/a.spec.js:5:19)","isEqual":false},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.line","valueA":5,"valueB":5,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.column","valueA":20,"valueB":20,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.originalFile","valueA":"cypress/e2e/a.spec.js","valueB":"cypress/e2e/a.spec.js","isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/a.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/a.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/a.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/a.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.frame","valueA":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","valueB":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","isEqual":true},{"path":"runs[0].tests[0].attempts[0].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.lifecycle","valueA":32,"valueB":35,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.before each[0].fnDuration","valueA":34,"valueB":18,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.before each[1].fnDuration","valueA":705,"valueB":1380,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.test.fnDuration","valueA":4004,"valueB":4009,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.test.afterFnDuration","valueA":299,"valueB":311,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.after each[0].fnDuration","valueA":21,"valueB":17,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":22,"afterFnDuration":1},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[0].wallClockStartedAt","valueA":"2023-09-08T03:26:45.707Z","valueB":"2023-09-09T13:15:27.604Z","isEqual":false},{"path":"runs[0].tests[0].attempts[0].wallClockDuration","valueA":5120,"valueB":5755,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].videoTimestamp","valueA":2866,"valueB":null,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].startedAt","valueA":"2023-09-08T03:26:45.707Z","valueB":"2023-09-09T13:15:27.604Z","isEqual":false},{"path":"runs[0].tests[0].attempts[0].duration","valueA":5120,"valueB":5755,"isEqual":false},{"path":"runs[0].tests[0].attempts[0].screenshots[0].screenshotId","valueA":"lv379","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].takenAt","valueA":"2023-09-08T03:26:50.486Z","valueB":"2023-09-09T13:15:33.051Z","isEqual":false},{"path":"runs[0].tests[0].attempts[0].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed).png","isEqual":false},{"path":"runs[0].tests[0].attempts[0].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[0].tests[0].attempts[0].screenshots[0].size","valueB":349117,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].specName","valueB":"a.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[0].screenshots[0].duration","valueB":303,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.message","valueA":"Timed out retrying after 4000ms: expected false to be true","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true","isEqual":false},{"path":"runs[0].tests[0].attempts[1].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/a.spec.js:5:19)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/a.spec.js:5:19)","isEqual":false},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.line","valueA":5,"valueB":5,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.column","valueA":20,"valueB":20,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.originalFile","valueA":"cypress/e2e/a.spec.js","valueB":"cypress/e2e/a.spec.js","isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/a.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/a.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/a.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/a.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.frame","valueA":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","valueB":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","isEqual":true},{"path":"runs[0].tests[0].attempts[1].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.lifecycle","valueA":28,"valueB":29,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.before each[0].fnDuration","valueA":7,"valueB":8,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.before each[1].fnDuration","valueA":66,"valueB":116,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.test.fnDuration","valueA":3991,"valueB":4005,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.test.afterFnDuration","valueA":231,"valueB":210,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[0].tests[0].attempts[1].timings.after each[0].fnDuration","valueA":23,"valueB":17,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.after each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":36,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[1].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[1].wallClockStartedAt","valueA":"2023-09-08T03:26:50.848Z","valueB":"2023-09-09T13:15:33.417Z","isEqual":false},{"path":"runs[0].tests[0].attempts[1].wallClockDuration","valueA":4384,"valueB":4369,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].videoTimestamp","valueA":8007,"valueB":null,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].startedAt","valueA":"2023-09-08T03:26:50.848Z","valueB":"2023-09-09T13:15:33.417Z","isEqual":false},{"path":"runs[0].tests[0].attempts[1].duration","valueA":4384,"valueB":4369,"isEqual":false},{"path":"runs[0].tests[0].attempts[1].screenshots[0].screenshotId","valueA":"eimp0","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].testAttemptIndex","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].takenAt","valueA":"2023-09-08T03:26:54.942Z","valueB":"2023-09-09T13:15:37.578Z","isEqual":false},{"path":"runs[0].tests[0].attempts[1].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed) (attempt 2).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed) (attempt 2).png","isEqual":false},{"path":"runs[0].tests[0].attempts[1].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[0].tests[0].attempts[1].screenshots[0].size","valueB":361908,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].specName","valueB":"a.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[1].screenshots[0].duration","valueB":206,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.message","valueA":"Timed out retrying after 4000ms: expected false to be true","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true","isEqual":false},{"path":"runs[0].tests[0].attempts[2].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/a.spec.js:5:19)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/a.spec.js:5:19)","isEqual":false},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.line","valueA":5,"valueB":5,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.column","valueA":20,"valueB":20,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.originalFile","valueA":"cypress/e2e/a.spec.js","valueB":"cypress/e2e/a.spec.js","isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/a.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/a.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/a.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/a.spec.js","isEqual":false},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.frame","valueA":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","valueB":" 3 | retries: 2,\n 4 | }, () => {\n> 5 | cy.wrap(false).should('be.true');\n | ^\n 6 | });\n 7 | });\n 8 | ","isEqual":true},{"path":"runs[0].tests[0].attempts[2].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.lifecycle","valueA":50,"valueB":44,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.before each[0].fnDuration","valueA":9,"valueB":8,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.before each[1].fnDuration","valueA":68,"valueB":323,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.test.fnDuration","valueA":3990,"valueB":3999,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.test.afterFnDuration","valueA":209,"valueB":209,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.after each[0].fnDuration","valueA":15,"valueB":13,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":18,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[2].timings.after all","valueA":[{"hookId":"h3","fnDuration":4,"afterFnDuration":0}],"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[2].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[2].wallClockStartedAt","valueA":"2023-09-08T03:26:55.247Z","valueB":"2023-09-09T13:15:37.833Z","isEqual":false},{"path":"runs[0].tests[0].attempts[2].wallClockDuration","valueA":4370,"valueB":4585,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].videoTimestamp","valueA":12406,"valueB":null,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].startedAt","valueA":"2023-09-08T03:26:55.247Z","valueB":"2023-09-09T13:15:37.833Z","isEqual":false},{"path":"runs[0].tests[0].attempts[2].duration","valueA":4370,"valueB":4585,"isEqual":false},{"path":"runs[0].tests[0].attempts[2].screenshots[0].screenshotId","valueA":"ve07d","isEqual":false,"note":"Does not exist in B"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].testAttemptIndex","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].takenAt","valueA":"2023-09-08T03:26:59.369Z","valueB":"2023-09-09T13:15:42.210Z","isEqual":false},{"path":"runs[0].tests[0].attempts[2].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed) (attempt 3).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/a.spec.js/Failing test with 2 attempts -- should try 2 times (failed) (attempt 3).png","isEqual":false},{"path":"runs[0].tests[0].attempts[2].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[0].tests[0].attempts[2].screenshots[0].size","valueB":362007,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].specName","valueB":"a.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[0].tests[0].attempts[2].screenshots[0].duration","valueB":207,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].stats.duration","valueA":1079,"valueB":1379,"isEqual":false},{"path":"runs[1].stats.endedAt","valueA":"2023-09-08T03:27:06.029Z","valueB":"2023-09-09T13:15:49.247Z","isEqual":false},{"path":"runs[1].stats.startedAt","valueA":"2023-09-08T03:27:04.950Z","valueB":"2023-09-09T13:15:47.868Z","isEqual":false},{"path":"runs[1].stats.failures","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].stats.passes","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[1].stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[1].stats.tests","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[1].reporter","valueA":"spec","valueB":"spec","isEqual":true},{"path":"runs[1].reporterStats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[1].reporterStats.tests","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[1].reporterStats.passes","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[1].reporterStats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].reporterStats.failures","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].reporterStats.start","valueA":"2023-09-08T03:27:04.952Z","valueB":"2023-09-09T13:15:47.870Z","isEqual":false},{"path":"runs[1].reporterStats.end","valueA":"2023-09-08T03:27:06.032Z","valueB":"2023-09-09T13:15:49.249Z","isEqual":false},{"path":"runs[1].reporterStats.duration","valueA":1080,"valueB":1379,"isEqual":false},{"path":"runs[1].spec.fileExtension","valueA":".js","valueB":".js","isEqual":true},{"path":"runs[1].spec.baseName","valueA":"d.spec.js","valueB":"d.spec.js","isEqual":true},{"path":"runs[1].spec.fileName","valueA":"d","valueB":"d","isEqual":true},{"path":"runs[1].spec.specFileExtension","valueA":".spec.js","valueB":".spec.js","isEqual":true},{"path":"runs[1].spec.relativeToCommonRoot","valueA":"d.spec.js","valueB":"d.spec.js","isEqual":true},{"path":"runs[1].spec.specType","valueA":"integration","valueB":"integration","isEqual":true},{"path":"runs[1].spec.name","valueA":"cypress/e2e/d.spec.js","valueB":"cypress/e2e/d.spec.js","isEqual":true},{"path":"runs[1].spec.relative","valueA":"cypress/e2e/d.spec.js","valueB":"cypress/e2e/d.spec.js","isEqual":true},{"path":"runs[1].spec.absolute","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/d.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/d.spec.js","isEqual":false},{"path":"runs[1].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[1].video","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/videos/d.spec.js.mp4","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos/d.spec.js.mp4","isEqual":false},{"path":"runs[1].shouldUploadVideo","valueA":true,"valueB":true,"isEqual":true},{"path":"runs[1].hooks[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[1].hooks[0].hookName","valueA":"before each","valueB":"before each","isEqual":true},{"path":"runs[1].hooks[0].title[0]","valueA":"\"before each\" hook","valueB":"\"before each\" hook","isEqual":true},{"path":"runs[1].hooks[0].body","valueA":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}","valueB":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}","isEqual":true},{"path":"runs[1].hooks[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[1].hooks[1].hookName","valueA":"before each","valueB":"before each","isEqual":true},{"path":"runs[1].hooks[1].title[0]","valueA":"\"before each\" hook","valueB":"\"before each\" hook","isEqual":true},{"path":"runs[1].hooks[1].body","valueA":"function () {\n cy.visit(\"/\");\n}","valueB":"function () {\n cy.visit(\"/\");\n}","isEqual":true},{"path":"runs[1].hooks[2].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[1].hooks[2].hookName","valueA":"after each","valueB":"after each","isEqual":true},{"path":"runs[1].hooks[2].title[0]","valueA":"\"after each\" hook","valueB":"\"after each\" hook","isEqual":true},{"path":"runs[1].hooks[2].body","valueA":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }","valueB":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }","isEqual":true},{"path":"runs[1].hooks[3].hookId","valueA":"h5","valueB":"h5","isEqual":true},{"path":"runs[1].hooks[3].hookName","valueA":"after each","valueB":"after each","isEqual":true},{"path":"runs[1].hooks[3].title[0]","valueA":"\"after each\" hook","valueB":"\"after each\" hook","isEqual":true},{"path":"runs[1].hooks[3].body","valueA":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}","valueB":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}","isEqual":true},{"path":"runs[1].hooks[4].hookId","valueA":"h3","valueB":"h3","isEqual":true},{"path":"runs[1].hooks[4].hookName","valueA":"after all","valueB":"after all","isEqual":true},{"path":"runs[1].hooks[4].title[0]","valueA":"\"after all\" hook","valueB":"\"after all\" hook","isEqual":true},{"path":"runs[1].hooks[4].body","valueA":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }","valueB":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }","isEqual":true},{"path":"runs[1].tests[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[1].tests[0].title[0]","valueA":"Passed test with screenshot, passed test with no screenshots","valueB":"Passed test with screenshot, passed test with no screenshots","isEqual":true},{"path":"runs[1].tests[0].title[1]","valueA":"should assert and take a screenshot","valueB":"should assert and take a screenshot","isEqual":true},{"path":"runs[1].tests[0].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[1].tests[0].body","valueA":"() => {\n // Assert that true is true\n cy.wrap(true).should('be.true');\n\n // Take a screenshot\n cy.screenshot('internal-assert-screenshot');\n }","valueB":"() => {\n // Assert that true is true\n cy.wrap(true).should('be.true');\n\n // Take a screenshot\n cy.screenshot('internal-assert-screenshot');\n }","isEqual":true},{"path":"runs[1].tests[0].displayError","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[1].tests[0].attempts[0].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.lifecycle","valueA":38,"valueB":32,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.before each[0].fnDuration","valueA":11,"valueB":12,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[0].afterFnDuration","valueA":0,"valueB":1,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.before each[1].fnDuration","valueA":146,"valueB":391,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.test.fnDuration","valueA":727,"valueB":712,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.test.afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.after each[0].fnDuration","valueA":15,"valueB":13,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":7,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[0].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[0].attempts[0].wallClockStartedAt","valueA":"2023-09-08T03:27:04.956Z","valueB":"2023-09-09T13:15:47.880Z","isEqual":false},{"path":"runs[1].tests[0].attempts[0].wallClockDuration","valueA":952,"valueB":1149,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].videoTimestamp","valueA":1172,"valueB":null,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].startedAt","valueA":"2023-09-08T03:27:04.956Z","valueB":"2023-09-09T13:15:47.880Z","isEqual":false},{"path":"runs[1].tests[0].attempts[0].duration","valueA":952,"valueB":1149,"isEqual":false},{"path":"runs[1].tests[0].attempts[0].screenshots[0].screenshotId","valueA":"mau0n","isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].name","valueA":"internal-assert-screenshot","valueB":"internal-assert-screenshot","isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].takenAt","valueA":"2023-09-08T03:27:05.165Z","valueB":"2023-09-09T13:15:48.330Z","isEqual":false},{"path":"runs[1].tests[0].attempts[0].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/d.spec.js/internal-assert-screenshot.png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/d.spec.js/internal-assert-screenshot.png","isEqual":false},{"path":"runs[1].tests[0].attempts[0].screenshots[0].height","valueA":1320,"valueB":1320,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].width","valueA":2000,"valueB":2000,"isEqual":true},{"path":"runs[1].tests[0].attempts[0].screenshots[0].size","valueB":234576,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].dimensions","valueB":{"width":2000,"height":1320},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].multipart","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].pixelRatio","valueB":2,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].specName","valueB":"d.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].scaled","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[0].attempts[0].screenshots[0].duration","valueB":704,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[1].tests[1].testId","valueA":"r4","valueB":"r4","isEqual":true},{"path":"runs[1].tests[1].title[0]","valueA":"Passed test with screenshot, passed test with no screenshots","valueB":"Passed test with screenshot, passed test with no screenshots","isEqual":true},{"path":"runs[1].tests[1].title[1]","valueA":"should assert that true is true","valueB":"should assert that true is true","isEqual":true},{"path":"runs[1].tests[1].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[1].tests[1].body","valueA":"() => {\n cy.wrap(true).should('be.true');\n }","valueB":"() => {\n cy.wrap(true).should('be.true');\n }","isEqual":true},{"path":"runs[1].tests[1].displayError","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[1].tests[1].attempts[0].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.lifecycle","valueA":19,"valueB":17,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.before each[0].fnDuration","valueA":7,"valueB":7,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.before each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.before each[1].fnDuration","valueA":53,"valueB":134,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.test.fnDuration","valueA":3,"valueB":2,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.test.afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[1].tests[1].attempts[0].timings.after each[0].fnDuration","valueA":18,"valueB":11,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.after each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":8,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[1].attempts[0].timings.after all","valueA":[{"hookId":"h3","fnDuration":3,"afterFnDuration":1}],"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[1].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[1].tests[1].attempts[0].wallClockStartedAt","valueA":"2023-09-08T03:27:05.910Z","valueB":"2023-09-09T13:15:49.057Z","isEqual":false},{"path":"runs[1].tests[1].attempts[0].wallClockDuration","valueA":118,"valueB":161,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].videoTimestamp","valueA":2126,"valueB":null,"isEqual":false},{"path":"runs[1].tests[1].attempts[0].startedAt","valueA":"2023-09-08T03:27:05.910Z","valueB":"2023-09-09T13:15:49.057Z","isEqual":false},{"path":"runs[1].tests[1].attempts[0].duration","valueA":118,"valueB":161,"isEqual":false},{"path":"runs[2].stats.duration","valueA":53,"valueB":61,"isEqual":false},{"path":"runs[2].stats.endedAt","valueA":"2023-09-08T03:27:08.972Z","valueB":"2023-09-09T13:15:52.222Z","isEqual":false},{"path":"runs[2].stats.startedAt","valueA":"2023-09-08T03:27:08.919Z","valueB":"2023-09-09T13:15:52.161Z","isEqual":false},{"path":"runs[2].stats.failures","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[2].stats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[2].stats.pending","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[2].stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[2].stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[2].stats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[2].reporter","valueA":"spec","valueB":"spec","isEqual":true},{"path":"runs[2].reporterStats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[2].reporterStats.tests","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[2].reporterStats.passes","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[2].reporterStats.pending","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[2].reporterStats.failures","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[2].reporterStats.start","valueA":"2023-09-08T03:27:08.921Z","valueB":"2023-09-09T13:15:52.163Z","isEqual":false},{"path":"runs[2].reporterStats.end","valueA":"2023-09-08T03:27:08.978Z","valueB":"2023-09-09T13:15:52.225Z","isEqual":false},{"path":"runs[2].reporterStats.duration","valueA":57,"valueB":62,"isEqual":false},{"path":"runs[2].spec.fileExtension","valueA":".js","valueB":".js","isEqual":true},{"path":"runs[2].spec.baseName","valueA":"c.spec.js","valueB":"c.spec.js","isEqual":true},{"path":"runs[2].spec.fileName","valueA":"c","valueB":"c","isEqual":true},{"path":"runs[2].spec.specFileExtension","valueA":".spec.js","valueB":".spec.js","isEqual":true},{"path":"runs[2].spec.relativeToCommonRoot","valueA":"c.spec.js","valueB":"c.spec.js","isEqual":true},{"path":"runs[2].spec.specType","valueA":"integration","valueB":"integration","isEqual":true},{"path":"runs[2].spec.name","valueA":"cypress/e2e/c.spec.js","valueB":"cypress/e2e/c.spec.js","isEqual":true},{"path":"runs[2].spec.relative","valueA":"cypress/e2e/c.spec.js","valueB":"cypress/e2e/c.spec.js","isEqual":true},{"path":"runs[2].spec.absolute","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/c.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/c.spec.js","isEqual":false},{"path":"runs[2].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[2].video","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/videos/c.spec.js.mp4","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos/c.spec.js.mp4","isEqual":false},{"path":"runs[2].shouldUploadVideo","valueA":true,"valueB":true,"isEqual":true},{"path":"runs[2].hooks[0].hookId","valueA":"h3","valueB":"h3","isEqual":true},{"path":"runs[2].hooks[0].hookName","valueA":"after all","valueB":"after all","isEqual":true},{"path":"runs[2].hooks[0].title[0]","valueA":"\"after all\" hook","valueB":"\"after all\" hook","isEqual":true},{"path":"runs[2].hooks[0].body","valueA":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }","valueB":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }","isEqual":true},{"path":"runs[2].tests[0].testId","valueA":"r3","valueB":"r0}","isEqual":false},{"path":"runs[2].tests[0].title[0]","valueA":"Ignored test","valueB":"Ignored test","isEqual":true},{"path":"runs[2].tests[0].title[1]","valueA":"should be a skipped test","valueB":"should be a skipped test","isEqual":true},{"path":"runs[2].tests[0].state","valueA":"pending","valueB":"pending","isEqual":true},{"path":"runs[2].tests[0].body","valueA":"() => {\n cy.wrap(false).should('be.true');\n }","valueB":"() => {\n cy.wrap(false).should('be.true');\n }","isEqual":true},{"path":"runs[2].tests[0].displayError","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[2].tests[0].attempts[0]","valueA":{"state":"pending","error":null,"timings":{"lifecycle":31,"after all":[{"hookId":"h3","fnDuration":5,"afterFnDuration":0}]},"failedFromHookId":null,"wallClockStartedAt":"2023-09-08T03:27:08.934Z","wallClockDuration":36,"videoTimestamp":1122,"startedAt":"2023-09-08T03:27:08.934Z","duration":36,"screenshots":[]},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].stats.duration","valueA":20745,"valueB":20004,"isEqual":false},{"path":"runs[3].stats.endedAt","valueA":"2023-09-08T03:27:32.145Z","valueB":"2023-09-09T13:16:19.050Z","isEqual":false},{"path":"runs[3].stats.startedAt","valueA":"2023-09-08T03:27:11.400Z","valueB":"2023-09-09T13:15:59.046Z","isEqual":false},{"path":"runs[3].stats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[3].stats.passes","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[3].stats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].stats.skipped","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].stats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[3].stats.tests","valueA":3,"valueB":3,"isEqual":true},{"path":"runs[3].reporter","valueA":"spec","valueB":"spec","isEqual":true},{"path":"runs[3].reporterStats.suites","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[3].reporterStats.tests","valueA":3,"valueB":3,"isEqual":true},{"path":"runs[3].reporterStats.passes","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[3].reporterStats.pending","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].reporterStats.failures","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[3].reporterStats.start","valueA":"2023-09-08T03:27:11.402Z","valueB":"2023-09-09T13:15:59.048Z","isEqual":false},{"path":"runs[3].reporterStats.end","valueA":"2023-09-08T03:27:32.149Z","valueB":"2023-09-09T13:16:19.054Z","isEqual":false},{"path":"runs[3].reporterStats.duration","valueA":20747,"valueB":20006,"isEqual":false},{"path":"runs[3].spec.fileExtension","valueA":".js","valueB":".js","isEqual":true},{"path":"runs[3].spec.baseName","valueA":"b.spec.js","valueB":"b.spec.js","isEqual":true},{"path":"runs[3].spec.fileName","valueA":"b","valueB":"b","isEqual":true},{"path":"runs[3].spec.specFileExtension","valueA":".spec.js","valueB":".spec.js","isEqual":true},{"path":"runs[3].spec.relativeToCommonRoot","valueA":"b.spec.js","valueB":"b.spec.js","isEqual":true},{"path":"runs[3].spec.specType","valueA":"integration","valueB":"integration","isEqual":true},{"path":"runs[3].spec.name","valueA":"cypress/e2e/b.spec.js","valueB":"cypress/e2e/b.spec.js","isEqual":true},{"path":"runs[3].spec.relative","valueA":"cypress/e2e/b.spec.js","valueB":"cypress/e2e/b.spec.js","isEqual":true},{"path":"runs[3].spec.absolute","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[3].video","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/videos/b.spec.js.mp4","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos/b.spec.js.mp4","isEqual":false},{"path":"runs[3].shouldUploadVideo","valueA":true,"valueB":true,"isEqual":true},{"path":"runs[3].hooks[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[3].hooks[0].hookName","valueA":"before each","valueB":"before each","isEqual":true},{"path":"runs[3].hooks[0].title[0]","valueA":"\"before each\" hook","valueB":"\"before each\" hook","isEqual":true},{"path":"runs[3].hooks[0].body","valueA":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}","valueB":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleBefore(currentTest);\n }\n}","isEqual":true},{"path":"runs[3].hooks[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[3].hooks[1].hookName","valueA":"before each","valueB":"before each","isEqual":true},{"path":"runs[3].hooks[1].title[0]","valueA":"\"before each\" hook","valueB":"\"before each\" hook","isEqual":true},{"path":"runs[3].hooks[1].body","valueA":"function () {\n cy.visit(\"/\");\n}","valueB":"function () {\n cy.visit(\"/\");\n}","isEqual":true},{"path":"runs[3].hooks[2].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[3].hooks[2].hookName","valueA":"after each","valueB":"after each","isEqual":true},{"path":"runs[3].hooks[2].title[0]","valueA":"\"after each\" hook","valueB":"\"after each\" hook","isEqual":true},{"path":"runs[3].hooks[2].body","valueA":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }","valueB":"function () {\n self.sendLogsToPrinter(self.collectorState.getCurrentLogStackIndex(), self.collectorState.getCurrentTest());\n }","isEqual":true},{"path":"runs[3].hooks[3].hookId","valueA":"h5","valueB":"h5","isEqual":true},{"path":"runs[3].hooks[3].hookName","valueA":"after each","valueB":"after each","isEqual":true},{"path":"runs[3].hooks[3].title[0]","valueA":"\"after each\" hook","valueB":"\"after each\" hook","isEqual":true},{"path":"runs[3].hooks[3].body","valueA":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}","valueB":"() => {\n const currentTest = cy.state(\"ctx\").currentTest;\n if (currentTest) {\n handleAfter(currentTest);\n }\n}","isEqual":true},{"path":"runs[3].hooks[4].hookId","valueA":"h3","valueB":"h3","isEqual":true},{"path":"runs[3].hooks[4].hookName","valueA":"after all","valueB":"after all","isEqual":true},{"path":"runs[3].hooks[4].title[0]","valueA":"\"after all\" hook","valueB":"\"after all\" hook","isEqual":true},{"path":"runs[3].hooks[4].body","valueA":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }","valueB":"function () {\n // Need to wait otherwise some last commands get omitted from logs.\n cy.task(CONSTANTS.TASK_NAME_OUTPUT, null, {log: false});\n }","isEqual":true},{"path":"runs[3].tests[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[3].tests[0].title[0]","valueA":"Failing test with 2 attempts, passed test and flaky test with 2 attempts","valueB":"Failing test with 2 attempts, passed test and flaky test with 2 attempts","isEqual":true},{"path":"runs[3].tests[0].title[1]","valueA":"should try 2 times","valueB":"should try 2 times","isEqual":true},{"path":"runs[3].tests[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[3].tests[0].body","valueA":"() => {\n cy.wrap(false).should('be.true');\n }","valueB":"() => {\n cy.wrap(false).should('be.true');\n }","isEqual":true},{"path":"runs[3].tests[0].displayError","valueA":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-12-demo/./cypress/e2e/b.spec.js:6:19)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:6:19)","isEqual":false},{"path":"runs[3].tests[0].attempts[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[3].tests[0].attempts[0].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[3].tests[0].attempts[0].error.message","valueA":"Timed out retrying after 4000ms: expected false to be true","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true","isEqual":false},{"path":"runs[3].tests[0].attempts[0].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/b.spec.js:6:19)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:6:19)","isEqual":false},{"path":"runs[3].tests[0].attempts[0].error.codeFrame.line","valueA":6,"valueB":6,"isEqual":true},{"path":"runs[3].tests[0].attempts[0].error.codeFrame.column","valueA":20,"valueB":20,"isEqual":true},{"path":"runs[3].tests[0].attempts[0].error.codeFrame.originalFile","valueA":"cypress/e2e/b.spec.js","valueB":"cypress/e2e/b.spec.js","isEqual":true},{"path":"runs[3].tests[0].attempts[0].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].tests[0].attempts[0].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].tests[0].attempts[0].error.codeFrame.frame","valueA":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","valueB":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","isEqual":true},{"path":"runs[3].tests[0].attempts[0].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[3].tests[0].attempts[0].timings.lifecycle","valueA":44,"valueB":32,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[3].tests[0].attempts[0].timings.before each[0].fnDuration","valueA":13,"valueB":17,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].timings.before each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[3].tests[0].attempts[0].timings.before each[1].fnDuration","valueA":160,"valueB":1310,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[0].attempts[0].timings.test.fnDuration","valueA":4012,"valueB":4019,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].timings.test.afterFnDuration","valueA":256,"valueB":275,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[3].tests[0].attempts[0].timings.after each[0].fnDuration","valueA":13,"valueB":22,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].timings.after each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":17,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[0].wallClockStartedAt","valueA":"2023-09-08T03:27:11.405Z","valueB":"2023-09-09T13:15:59.052Z","isEqual":false},{"path":"runs[3].tests[0].attempts[0].wallClockDuration","valueA":4519,"valueB":5654,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].videoTimestamp","valueA":1153,"valueB":null,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].startedAt","valueA":"2023-09-08T03:27:11.405Z","valueB":"2023-09-09T13:15:59.052Z","isEqual":false},{"path":"runs[3].tests[0].attempts[0].duration","valueA":4519,"valueB":5654,"isEqual":false},{"path":"runs[3].tests[0].attempts[0].screenshots[0].screenshotId","valueA":"uah46","isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[0].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[3].tests[0].attempts[0].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[3].tests[0].attempts[0].screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[0].attempts[0].screenshots[0].takenAt","valueA":"2023-09-08T03:27:15.638Z","valueB":"2023-09-09T13:16:04.433Z","isEqual":false},{"path":"runs[3].tests[0].attempts[0].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed).png","isEqual":false},{"path":"runs[3].tests[0].attempts[0].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[3].tests[0].attempts[0].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[3].tests[0].attempts[0].screenshots[0].size","valueB":374371,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[0].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[0].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[0].screenshots[0].specName","valueB":"b.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[0].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[0].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[0].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[0].screenshots[0].duration","valueB":256,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[1].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[3].tests[0].attempts[1].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[3].tests[0].attempts[1].error.message","valueA":"Timed out retrying after 4000ms: expected false to be true","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true","isEqual":false},{"path":"runs[3].tests[0].attempts[1].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/b.spec.js:6:19)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:6:19)","isEqual":false},{"path":"runs[3].tests[0].attempts[1].error.codeFrame.line","valueA":6,"valueB":6,"isEqual":true},{"path":"runs[3].tests[0].attempts[1].error.codeFrame.column","valueA":20,"valueB":20,"isEqual":true},{"path":"runs[3].tests[0].attempts[1].error.codeFrame.originalFile","valueA":"cypress/e2e/b.spec.js","valueB":"cypress/e2e/b.spec.js","isEqual":true},{"path":"runs[3].tests[0].attempts[1].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].tests[0].attempts[1].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].tests[0].attempts[1].error.codeFrame.frame","valueA":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","valueB":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","isEqual":true},{"path":"runs[3].tests[0].attempts[1].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[3].tests[0].attempts[1].timings.lifecycle","valueA":27,"valueB":28,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[3].tests[0].attempts[1].timings.before each[0].fnDuration","valueA":15,"valueB":11,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[0].attempts[1].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[3].tests[0].attempts[1].timings.before each[1].fnDuration","valueA":62,"valueB":118,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].timings.before each[1].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].timings.test.fnDuration","valueA":3999,"valueB":3992,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].timings.test.afterFnDuration","valueA":227,"valueB":215,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[3].tests[0].attempts[1].timings.after each[0].fnDuration","valueA":16,"valueB":12,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[0].attempts[1].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":19,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[1].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[1].wallClockStartedAt","valueA":"2023-09-08T03:27:15.958Z","valueB":"2023-09-09T13:16:04.774Z","isEqual":false},{"path":"runs[3].tests[0].attempts[1].wallClockDuration","valueA":4368,"valueB":4366,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].videoTimestamp","valueA":5706,"valueB":null,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].startedAt","valueA":"2023-09-08T03:27:15.958Z","valueB":"2023-09-09T13:16:04.774Z","isEqual":false},{"path":"runs[3].tests[0].attempts[1].duration","valueA":4368,"valueB":4366,"isEqual":false},{"path":"runs[3].tests[0].attempts[1].screenshots[0].screenshotId","valueA":"mmkc1","isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[1].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[3].tests[0].attempts[1].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[3].tests[0].attempts[1].screenshots[0].testAttemptIndex","valueA":1,"valueB":1,"isEqual":true},{"path":"runs[3].tests[0].attempts[1].screenshots[0].takenAt","valueA":"2023-09-08T03:27:20.065Z","valueB":"2023-09-09T13:16:08.927Z","isEqual":false},{"path":"runs[3].tests[0].attempts[1].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed) (attempt 2).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed) (attempt 2).png","isEqual":false},{"path":"runs[3].tests[0].attempts[1].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[3].tests[0].attempts[1].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[3].tests[0].attempts[1].screenshots[0].size","valueB":377109,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[1].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[1].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[1].screenshots[0].specName","valueB":"b.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[1].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[1].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[1].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[1].screenshots[0].duration","valueB":212,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[2].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[3].tests[0].attempts[2].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[3].tests[0].attempts[2].error.message","valueA":"Timed out retrying after 4000ms: expected false to be true","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true","isEqual":false},{"path":"runs[3].tests[0].attempts[2].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/b.spec.js:6:19)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:6:19)","isEqual":false},{"path":"runs[3].tests[0].attempts[2].error.codeFrame.line","valueA":6,"valueB":6,"isEqual":true},{"path":"runs[3].tests[0].attempts[2].error.codeFrame.column","valueA":20,"valueB":20,"isEqual":true},{"path":"runs[3].tests[0].attempts[2].error.codeFrame.originalFile","valueA":"cypress/e2e/b.spec.js","valueB":"cypress/e2e/b.spec.js","isEqual":true},{"path":"runs[3].tests[0].attempts[2].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].tests[0].attempts[2].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].tests[0].attempts[2].error.codeFrame.frame","valueA":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","valueB":" 4 | retries: 2,\n 5 | }, () => {\n> 6 | cy.wrap(false).should('be.true');\n | ^\n 7 | });\n 8 | \n 9 | it('should assert that true is true', () => {","isEqual":true},{"path":"runs[3].tests[0].attempts[2].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[3].tests[0].attempts[2].timings.lifecycle","valueA":44,"valueB":44,"isEqual":true},{"path":"runs[3].tests[0].attempts[2].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[3].tests[0].attempts[2].timings.before each[0].fnDuration","valueA":10,"valueB":11,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[0].attempts[2].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[3].tests[0].attempts[2].timings.before each[1].fnDuration","valueA":52,"valueB":294,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[0].attempts[2].timings.test.fnDuration","valueA":3991,"valueB":3988,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].timings.test.afterFnDuration","valueA":224,"valueB":216,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[3].tests[0].attempts[2].timings.after each[0].fnDuration","valueA":16,"valueB":14,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].timings.after each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":21,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[2].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[2].wallClockStartedAt","valueA":"2023-09-08T03:27:20.341Z","valueB":"2023-09-09T13:16:09.187Z","isEqual":false},{"path":"runs[3].tests[0].attempts[2].wallClockDuration","valueA":4363,"valueB":4554,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].videoTimestamp","valueA":10089,"valueB":null,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].startedAt","valueA":"2023-09-08T03:27:20.341Z","valueB":"2023-09-09T13:16:09.187Z","isEqual":false},{"path":"runs[3].tests[0].attempts[2].duration","valueA":4363,"valueB":4554,"isEqual":false},{"path":"runs[3].tests[0].attempts[2].screenshots[0].screenshotId","valueA":"kw950","isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[0].attempts[2].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[3].tests[0].attempts[2].screenshots[0].testId","valueA":"r3","valueB":"r3","isEqual":true},{"path":"runs[3].tests[0].attempts[2].screenshots[0].testAttemptIndex","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[3].tests[0].attempts[2].screenshots[0].takenAt","valueA":"2023-09-08T03:27:24.443Z","valueB":"2023-09-09T13:16:13.526Z","isEqual":false},{"path":"runs[3].tests[0].attempts[2].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed) (attempt 3).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should try 2 times (failed) (attempt 3).png","isEqual":false},{"path":"runs[3].tests[0].attempts[2].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[3].tests[0].attempts[2].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[3].tests[0].attempts[2].screenshots[0].size","valueB":376387,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[2].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[2].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[2].screenshots[0].specName","valueB":"b.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[2].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[2].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[2].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[0].attempts[2].screenshots[0].duration","valueB":212,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[1].testId","valueA":"r4","valueB":"r4","isEqual":true},{"path":"runs[3].tests[1].title[0]","valueA":"Failing test with 2 attempts, passed test and flaky test with 2 attempts","valueB":"Failing test with 2 attempts, passed test and flaky test with 2 attempts","isEqual":true},{"path":"runs[3].tests[1].title[1]","valueA":"should assert that true is true","valueB":"should assert that true is true","isEqual":true},{"path":"runs[3].tests[1].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[3].tests[1].body","valueA":"() => {\n cy.wrap(true).should('be.true');\n }","valueB":"() => {\n cy.wrap(true).should('be.true');\n }","isEqual":true},{"path":"runs[3].tests[1].displayError","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[3].tests[1].attempts[0].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[3].tests[1].attempts[0].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[3].tests[1].attempts[0].timings.lifecycle","valueA":43,"valueB":42,"isEqual":false},{"path":"runs[3].tests[1].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[3].tests[1].attempts[0].timings.before each[0].fnDuration","valueA":13,"valueB":11,"isEqual":false},{"path":"runs[3].tests[1].attempts[0].timings.before each[0].afterFnDuration","valueA":1,"valueB":0,"isEqual":false},{"path":"runs[3].tests[1].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[3].tests[1].attempts[0].timings.before each[1].fnDuration","valueA":391,"valueB":285,"isEqual":false},{"path":"runs[3].tests[1].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[1].attempts[0].timings.test.fnDuration","valueA":2,"valueB":2,"isEqual":true},{"path":"runs[3].tests[1].attempts[0].timings.test.afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[1].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[3].tests[1].attempts[0].timings.after each[0].fnDuration","valueA":14,"valueB":11,"isEqual":false},{"path":"runs[3].tests[1].attempts[0].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[1].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":9,"afterFnDuration":1},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[1].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[1].attempts[0].wallClockStartedAt","valueA":"2023-09-08T03:27:24.722Z","valueB":"2023-09-09T13:16:13.797Z","isEqual":false},{"path":"runs[3].tests[1].attempts[0].wallClockDuration","valueA":475,"valueB":341,"isEqual":false},{"path":"runs[3].tests[1].attempts[0].videoTimestamp","valueA":14470,"valueB":null,"isEqual":false},{"path":"runs[3].tests[1].attempts[0].startedAt","valueA":"2023-09-08T03:27:24.722Z","valueB":"2023-09-09T13:16:13.797Z","isEqual":false},{"path":"runs[3].tests[1].attempts[0].duration","valueA":475,"valueB":341,"isEqual":false},{"path":"runs[3].tests[2].testId","valueA":"r5","valueB":"r5","isEqual":true},{"path":"runs[3].tests[2].title[0]","valueA":"Failing test with 2 attempts, passed test and flaky test with 2 attempts","valueB":"Failing test with 2 attempts, passed test and flaky test with 2 attempts","isEqual":true},{"path":"runs[3].tests[2].title[1]","valueA":"should fail on the first attempt and pass on the second","valueB":"should fail on the first attempt and pass on the second","isEqual":true},{"path":"runs[3].tests[2].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[3].tests[2].body","valueA":"() => {\n if (attempt === 0) {\n attempt++;\n cy.wrap(false).should('be.true'); // This will fail on the first attempt\n } else {\n cy.wrap(true).should('be.true'); // This will pass on the second attempt\n }\n }","valueB":"() => {\n if (attempt === 0) {\n attempt++;\n cy.wrap(false).should('be.true'); // This will fail on the first attempt\n } else {\n cy.wrap(true).should('be.true'); // This will pass on the second attempt\n }\n }","isEqual":true},{"path":"runs[3].tests[2].displayError","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].state","valueA":"failed","valueB":"failed","isEqual":true},{"path":"runs[3].tests[2].attempts[0].error.name","valueA":"AssertionError","valueB":"AssertionError","isEqual":true},{"path":"runs[3].tests[2].attempts[0].error.message","valueA":"Timed out retrying after 4000ms: expected false to be true","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true","isEqual":false},{"path":"runs[3].tests[2].attempts[0].error.stack","valueA":" at Context.eval (webpack://cypress-12-demo/./cypress/e2e/b.spec.js:16:21)","valueB":"AssertionError: Timed out retrying after 4000ms: expected false to be true\n at Context.eval (webpack://cypress-13-demo/./cypress/e2e/b.spec.js:16:21)","isEqual":false},{"path":"runs[3].tests[2].attempts[0].error.codeFrame.line","valueA":16,"valueB":16,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].error.codeFrame.column","valueA":22,"valueB":22,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].error.codeFrame.originalFile","valueA":"cypress/e2e/b.spec.js","valueB":"cypress/e2e/b.spec.js","isEqual":true},{"path":"runs[3].tests[2].attempts[0].error.codeFrame.relativeFile","valueA":"e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].tests[2].attempts[0].error.codeFrame.absoluteFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/e2e/b.spec.js","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/e2e/b.spec.js","isEqual":false},{"path":"runs[3].tests[2].attempts[0].error.codeFrame.frame","valueA":" 14 | if (attempt === 0) {\n 15 | attempt++;\n> 16 | cy.wrap(false).should('be.true'); // This will fail on the first attempt\n | ^\n 17 | } else {\n 18 | cy.wrap(true).should('be.true'); // This will pass on the second attempt\n 19 | }","valueB":" 14 | if (attempt === 0) {\n 15 | attempt++;\n> 16 | cy.wrap(false).should('be.true'); // This will fail on the first attempt\n | ^\n 17 | } else {\n 18 | cy.wrap(true).should('be.true'); // This will pass on the second attempt\n 19 | }","isEqual":true},{"path":"runs[3].tests[2].attempts[0].error.codeFrame.language","valueA":"js","valueB":"js","isEqual":true},{"path":"runs[3].tests[2].attempts[0].timings.lifecycle","valueA":34,"valueB":21,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[3].tests[2].attempts[0].timings.before each[0].fnDuration","valueA":7,"valueB":9,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[3].tests[2].attempts[0].timings.before each[1].fnDuration","valueA":2438,"valueB":154,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].timings.test.fnDuration","valueA":3993,"valueB":3997,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].timings.test.afterFnDuration","valueA":237,"valueB":210,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[3].tests[2].attempts[0].timings.after each[0].fnDuration","valueA":12,"valueB":37,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].timings.after each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":15,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[2].attempts[0].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[2].attempts[0].wallClockStartedAt","valueA":"2023-09-08T03:27:25.199Z","valueB":"2023-09-09T13:16:14.160Z","isEqual":false},{"path":"runs[3].tests[2].attempts[0].wallClockDuration","valueA":6737,"valueB":4394,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].videoTimestamp","valueA":14947,"valueB":null,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].startedAt","valueA":"2023-09-08T03:27:25.199Z","valueB":"2023-09-09T13:16:14.160Z","isEqual":false},{"path":"runs[3].tests[2].attempts[0].duration","valueA":6737,"valueB":4394,"isEqual":false},{"path":"runs[3].tests[2].attempts[0].screenshots[0].screenshotId","valueA":"9ljg2","isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[2].attempts[0].screenshots[0].name","valueA":"screenshot","valueB":"screenshot","isEqual":true},{"path":"runs[3].tests[2].attempts[0].screenshots[0].testId","valueA":"r5","valueB":"r5","isEqual":true},{"path":"runs[3].tests[2].attempts[0].screenshots[0].testAttemptIndex","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].screenshots[0].takenAt","valueA":"2023-09-08T03:27:31.673Z","valueB":"2023-09-09T13:16:18.345Z","isEqual":false},{"path":"runs[3].tests[2].attempts[0].screenshots[0].path","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should fail on the first attempt and pass on the second (failed).png","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots/b.spec.js/Failing test with 2 attempts, passed test and flaky test with 2 attempts -- should fail on the first attempt and pass on the second (failed).png","isEqual":false},{"path":"runs[3].tests[2].attempts[0].screenshots[0].height","valueA":1440,"valueB":1440,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].screenshots[0].width","valueA":2560,"valueB":2560,"isEqual":true},{"path":"runs[3].tests[2].attempts[0].screenshots[0].size","valueB":380678,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[2].attempts[0].screenshots[0].dimensions","valueB":{"width":2560,"height":1440},"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[2].attempts[0].screenshots[0].multipart","valueB":false,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[2].attempts[0].screenshots[0].specName","valueB":"b.spec.js","isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[2].attempts[0].screenshots[0].testFailure","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[2].attempts[0].screenshots[0].scaled","valueB":true,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[2].attempts[0].screenshots[0].blackout","valueB":[],"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[2].attempts[0].screenshots[0].duration","valueB":208,"isEqual":false,"note":"Does not exist in A"},{"path":"runs[3].tests[2].attempts[1].state","valueA":"passed","valueB":"passed","isEqual":true},{"path":"runs[3].tests[2].attempts[1].error","valueA":null,"valueB":null,"isEqual":true},{"path":"runs[3].tests[2].attempts[1].timings.lifecycle","valueA":37,"valueB":35,"isEqual":false},{"path":"runs[3].tests[2].attempts[1].timings.before each[0].hookId","valueA":"h1","valueB":"h1","isEqual":true},{"path":"runs[3].tests[2].attempts[1].timings.before each[0].fnDuration","valueA":14,"valueB":8,"isEqual":false},{"path":"runs[3].tests[2].attempts[1].timings.before each[0].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[2].attempts[1].timings.before each[1].hookId","valueA":"h2","valueB":"h2","isEqual":true},{"path":"runs[3].tests[2].attempts[1].timings.before each[1].fnDuration","valueA":107,"valueB":345,"isEqual":false},{"path":"runs[3].tests[2].attempts[1].timings.before each[1].afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[2].attempts[1].timings.test.fnDuration","valueA":3,"valueB":3,"isEqual":true},{"path":"runs[3].tests[2].attempts[1].timings.test.afterFnDuration","valueA":0,"valueB":0,"isEqual":true},{"path":"runs[3].tests[2].attempts[1].timings.after each[0].hookId","valueA":"h4","valueB":"h4","isEqual":true},{"path":"runs[3].tests[2].attempts[1].timings.after each[0].fnDuration","valueA":15,"valueB":11,"isEqual":false},{"path":"runs[3].tests[2].attempts[1].timings.after each[0].afterFnDuration","valueA":0,"valueB":1,"isEqual":false},{"path":"runs[3].tests[2].attempts[1].timings.after each[1]","valueA":{"hookId":"h5","fnDuration":11,"afterFnDuration":0},"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[2].attempts[1].timings.after all","valueA":[{"hookId":"h3","fnDuration":4,"afterFnDuration":0}],"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[2].attempts[1].failedFromHookId","valueA":null,"isEqual":false,"note":"Does not exist in B"},{"path":"runs[3].tests[2].attempts[1].wallClockStartedAt","valueA":"2023-09-08T03:27:31.946Z","valueB":"2023-09-09T13:16:18.622Z","isEqual":false},{"path":"runs[3].tests[2].attempts[1].wallClockDuration","valueA":196,"valueB":392,"isEqual":false},{"path":"runs[3].tests[2].attempts[1].videoTimestamp","valueA":21694,"valueB":null,"isEqual":false},{"path":"runs[3].tests[2].attempts[1].startedAt","valueA":"2023-09-08T03:27:31.946Z","valueB":"2023-09-09T13:16:18.622Z","isEqual":false},{"path":"runs[3].tests[2].attempts[1].duration","valueA":196,"valueB":392,"isEqual":false},{"path":"startedTestsAt","valueA":"2023-09-08T03:26:45.684Z","valueB":"2023-09-09T13:15:27.599Z","isEqual":false},{"path":"endedTestsAt","valueA":"2023-09-08T03:27:32.145Z","valueB":"2023-09-09T13:16:19.050Z","isEqual":false},{"path":"config.animationDistanceThreshold","valueA":5,"valueB":5,"isEqual":true},{"path":"config.arch","valueA":"arm64","valueB":"arm64","isEqual":true},{"path":"config.autoOpen","valueA":false,"valueB":false,"isEqual":true},{"path":"config.baseUrl","valueA":"https://todomvc.com/examples/vanillajs","valueB":"https://todomvc.com/examples/vanillajs","isEqual":true},{"path":"config.blockHosts","valueA":null,"valueB":null,"isEqual":true},{"path":"config.browsers[0].name","valueA":"chrome","valueB":"chrome","isEqual":true},{"path":"config.browsers[0].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.browsers[0].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.browsers[0].displayName","valueA":"Chrome","valueB":"Chrome","isEqual":true},{"path":"config.browsers[0].version","valueA":"116.0.5845.179","valueB":"116.0.5845.179","isEqual":true},{"path":"config.browsers[0].path","valueA":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","valueB":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","isEqual":true},{"path":"config.browsers[0].minSupportedVersion","valueA":64,"valueB":64,"isEqual":true},{"path":"config.browsers[0].majorVersion","valueA":"116","valueB":"116","isEqual":true},{"path":"config.browsers[1].name","valueA":"edge","valueB":"edge","isEqual":true},{"path":"config.browsers[1].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.browsers[1].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.browsers[1].displayName","valueA":"Edge","valueB":"Edge","isEqual":true},{"path":"config.browsers[1].version","valueA":"116.0.1938.76","valueB":"116.0.1938.76","isEqual":true},{"path":"config.browsers[1].path","valueA":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","valueB":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","isEqual":true},{"path":"config.browsers[1].minSupportedVersion","valueA":79,"valueB":79,"isEqual":true},{"path":"config.browsers[1].majorVersion","valueA":"116","valueB":"116","isEqual":true},{"path":"config.browsers[2].name","valueA":"electron","valueB":"electron","isEqual":true},{"path":"config.browsers[2].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.browsers[2].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.browsers[2].displayName","valueA":"Electron","valueB":"Electron","isEqual":true},{"path":"config.browsers[2].version","valueA":"106.0.5249.51","valueB":"106.0.5249.51","isEqual":true},{"path":"config.browsers[2].path","valueA":"","valueB":"","isEqual":true},{"path":"config.browsers[2].majorVersion","valueA":106,"valueB":106,"isEqual":true},{"path":"config.chromeWebSecurity","valueA":true,"valueB":true,"isEqual":true},{"path":"config.clientRoute","valueA":"/__/","valueB":"/__/","isEqual":true},{"path":"config.configFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress.config.ts","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress.config.ts","isEqual":false},{"path":"config.cypressBinaryRoot","valueA":"/Users/miguelangarano/Library/Caches/Cypress/12.17.4/Cypress.app/Contents/Resources/app","valueB":"/Users/miguelangarano/Library/Caches/Cypress/12.17.4/Cypress.app/Contents/Resources/app","isEqual":true},{"path":"config.cypressEnv","valueA":"production","valueB":"production","isEqual":true},{"path":"config.defaultCommandTimeout","valueA":4000,"valueB":4000,"isEqual":true},{"path":"config.devServerPublicPathRoute","valueA":"/__cypress/src","valueB":"/__cypress/src","isEqual":true},{"path":"config.downloadsFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/downloads","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/downloads","isEqual":false},{"path":"config.env.currents_temp_file","valueA":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-99075-DhSNMfp2WQcu","valueB":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-59500-OGDLdU8z0f9q","isEqual":false},{"path":"config.env.currents_debug_enabled","valueA":false,"valueB":false,"isEqual":true},{"path":"config.excludeSpecPattern","valueA":"*.hot-update.js","valueB":"*.hot-update.js","isEqual":true},{"path":"config.execTimeout","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.experimentalCspAllowList","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalFetchPolyfill","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalInteractiveRunEvents","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalMemoryManagement","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalModifyObstructiveThirdPartyCode","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalOriginDependencies","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalRunAllSpecs","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalSingleTabRunMode","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalSkipDomainInjection","valueA":null,"valueB":null,"isEqual":true},{"path":"config.experimentalSourceRewriting","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalStudio","valueA":false,"valueB":false,"isEqual":true},{"path":"config.experimentalWebKitSupport","valueA":false,"valueB":false,"isEqual":true},{"path":"config.fileServerFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","isEqual":false},{"path":"config.fixturesFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/fixtures","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/fixtures","isEqual":false},{"path":"config.hosts","valueA":null,"valueB":null,"isEqual":true},{"path":"config.includeShadowDom","valueA":false,"valueB":false,"isEqual":true},{"path":"config.isInteractive","valueA":true,"valueB":true,"isEqual":true},{"path":"config.isTextTerminal","valueA":true,"valueB":true,"isEqual":true},{"path":"config.keystrokeDelay","valueA":0,"valueB":0,"isEqual":true},{"path":"config.modifyObstructiveCode","valueA":true,"valueB":true,"isEqual":true},{"path":"config.morgan","valueA":false,"valueB":false,"isEqual":true},{"path":"config.namespace","valueA":"__cypress","valueB":"__cypress","isEqual":true},{"path":"config.numTestsKeptInMemory","valueA":0,"valueB":0,"isEqual":true},{"path":"config.pageLoadTimeout","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.platform","valueA":"darwin","valueB":"darwin","isEqual":true},{"path":"config.port","valueA":null,"valueB":null,"isEqual":true},{"path":"config.projectId","valueA":null,"valueB":null,"isEqual":true},{"path":"config.projectName","valueA":"cypress-12-demo","valueB":"cypress-13-demo","isEqual":false},{"path":"config.projectRoot","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","isEqual":false},{"path":"config.rawJson.e2e.baseUrl","valueA":"https://todomvc.com/examples/vanillajs","valueB":"https://todomvc.com/examples/vanillajs","isEqual":true},{"path":"config.rawJson.e2e.supportFile","valueA":"cypress/support/e2e.ts","valueB":"cypress/support/e2e.ts","isEqual":true},{"path":"config.rawJson.e2e.specPattern","valueA":"cypress/*/**/*.spec.js","valueB":"cypress/*/**/*.spec.js","isEqual":true},{"path":"config.rawJson.e2e.setupNodeEvents","valueA":"[Function setupNodeEvents]","valueB":"[Function setupNodeEvents]","isEqual":true},{"path":"config.rawJson.component.specPattern[0]","valueA":"pages/__tests__/*.spec.tsx","valueB":"pages/__tests__/*.spec.tsx","isEqual":true},{"path":"config.rawJson.component.setupNodeEvents","valueA":"[Function setupNodeEvents]","valueB":"[Function setupNodeEvents]","isEqual":true},{"path":"config.rawJson.component.devServer.framework","valueA":"next","valueB":"next","isEqual":true},{"path":"config.rawJson.component.devServer.bundler","valueA":"webpack","valueB":"webpack","isEqual":true},{"path":"config.rawJson.baseUrl","valueA":"https://todomvc.com/examples/vanillajs","valueB":"https://todomvc.com/examples/vanillajs","isEqual":true},{"path":"config.rawJson.supportFile","valueA":"cypress/support/e2e.ts","valueB":"cypress/support/e2e.ts","isEqual":true},{"path":"config.rawJson.specPattern","valueA":"cypress/*/**/*.spec.js","valueB":"cypress/*/**/*.spec.js","isEqual":true},{"path":"config.rawJson.setupNodeEvents","valueA":"[Function setupNodeEvents]","valueB":"[Function setupNodeEvents]","isEqual":true},{"path":"config.rawJson.projectRoot","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo","isEqual":false},{"path":"config.rawJson.projectName","valueA":"cypress-12-demo","valueB":"cypress-13-demo","isEqual":false},{"path":"config.rawJson.repoRoot","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","isEqual":true},{"path":"config.redirectionLimit","valueA":20,"valueB":20,"isEqual":true},{"path":"config.repoRoot","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13","isEqual":true},{"path":"config.report","valueA":true,"valueB":true,"isEqual":true},{"path":"config.reporter","valueA":"spec","valueB":"spec","isEqual":true},{"path":"config.reporterOptions","valueA":null,"valueB":null,"isEqual":true},{"path":"config.reporterRoute","valueA":"/__cypress/reporter","valueB":"/__cypress/reporter","isEqual":true},{"path":"config.requestTimeout","valueA":5000,"valueB":5000,"isEqual":true},{"path":"config.resolved.animationDistanceThreshold.value","valueA":5,"valueB":5,"isEqual":true},{"path":"config.resolved.animationDistanceThreshold.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.arch.value","valueA":"arm64","valueB":"arm64","isEqual":true},{"path":"config.resolved.arch.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.baseUrl.value","valueA":"https://todomvc.com/examples/vanillajs","valueB":"https://todomvc.com/examples/vanillajs","isEqual":true},{"path":"config.resolved.baseUrl.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.blockHosts.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.blockHosts.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.chromeWebSecurity.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.chromeWebSecurity.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.clientCertificates.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.defaultCommandTimeout.value","valueA":4000,"valueB":4000,"isEqual":true},{"path":"config.resolved.defaultCommandTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.downloadsFolder.value","valueA":"cypress/downloads","valueB":"cypress/downloads","isEqual":true},{"path":"config.resolved.downloadsFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.env.currents_temp_file.value","valueA":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-99075-DhSNMfp2WQcu","valueB":"/var/folders/1l/tzj2dqys6js7w35f8rx2jsq00000gn/T/tmp-59500-OGDLdU8z0f9q","isEqual":false},{"path":"config.resolved.env.currents_temp_file.from","valueA":"cli","valueB":"cli","isEqual":true},{"path":"config.resolved.env.currents_debug_enabled.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.env.currents_debug_enabled.from","valueA":"cli","valueB":"cli","isEqual":true},{"path":"config.resolved.execTimeout.value","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.resolved.execTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalCspAllowList.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalCspAllowList.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalFetchPolyfill.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalFetchPolyfill.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalInteractiveRunEvents.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalInteractiveRunEvents.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalRunAllSpecs.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalRunAllSpecs.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalMemoryManagement.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalMemoryManagement.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalModifyObstructiveThirdPartyCode.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalModifyObstructiveThirdPartyCode.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalSkipDomainInjection.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.experimentalSkipDomainInjection.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalOriginDependencies.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalOriginDependencies.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalSourceRewriting.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalSourceRewriting.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalSingleTabRunMode.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalSingleTabRunMode.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalStudio.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalStudio.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.experimentalWebKitSupport.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.experimentalWebKitSupport.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.fileServerFolder.value","valueA":"","valueB":"","isEqual":true},{"path":"config.resolved.fileServerFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.fixturesFolder.value","valueA":"cypress/fixtures","valueB":"cypress/fixtures","isEqual":true},{"path":"config.resolved.fixturesFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.excludeSpecPattern.value","valueA":"*.hot-update.js","valueB":"*.hot-update.js","isEqual":true},{"path":"config.resolved.excludeSpecPattern.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.includeShadowDom.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.includeShadowDom.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.keystrokeDelay.value","valueA":0,"valueB":0,"isEqual":true},{"path":"config.resolved.keystrokeDelay.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.modifyObstructiveCode.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.modifyObstructiveCode.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.nodeVersion.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.numTestsKeptInMemory.value","valueA":0,"valueB":0,"isEqual":true},{"path":"config.resolved.numTestsKeptInMemory.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.platform.value","valueA":"darwin","valueB":"darwin","isEqual":true},{"path":"config.resolved.platform.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.pageLoadTimeout.value","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.resolved.pageLoadTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.port.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.port.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.projectId.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.projectId.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.redirectionLimit.value","valueA":20,"valueB":20,"isEqual":true},{"path":"config.resolved.redirectionLimit.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.reporter.value","valueA":"spec","valueB":"spec","isEqual":true},{"path":"config.resolved.reporter.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.reporterOptions.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.reporterOptions.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.requestTimeout.value","valueA":5000,"valueB":5000,"isEqual":true},{"path":"config.resolved.requestTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.resolvedNodePath.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.resolvedNodePath.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.resolvedNodeVersion.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.resolvedNodeVersion.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.responseTimeout.value","valueA":30000,"valueB":30000,"isEqual":true},{"path":"config.resolved.responseTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.retries.value.runMode","valueA":0,"valueB":0,"isEqual":true},{"path":"config.resolved.retries.value.openMode","valueA":0,"valueB":0,"isEqual":true},{"path":"config.resolved.retries.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.screenshotOnRunFailure.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.screenshotOnRunFailure.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.screenshotsFolder.value","valueA":"cypress/screenshots","valueB":"cypress/screenshots","isEqual":true},{"path":"config.resolved.screenshotsFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.slowTestThreshold.value","valueA":10000,"valueB":10000,"isEqual":true},{"path":"config.resolved.slowTestThreshold.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.scrollBehavior.value","valueA":"top","valueB":"top","isEqual":true},{"path":"config.resolved.scrollBehavior.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.supportFile.value","valueA":"cypress/support/e2e.ts","valueB":"cypress/support/e2e.ts","isEqual":true},{"path":"config.resolved.supportFile.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.supportFolder.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.supportFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.taskTimeout.value","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.resolved.taskTimeout.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.testIsolation.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.testIsolation.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.trashAssetsBeforeRuns.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.trashAssetsBeforeRuns.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.userAgent.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.userAgent.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.video.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.video.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.videoCompression.value","valueA":32,"valueB":32,"isEqual":true},{"path":"config.resolved.videoCompression.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.videosFolder.value","valueA":"cypress/videos","valueB":"cypress/videos","isEqual":true},{"path":"config.resolved.videosFolder.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.videoUploadOnPasses.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.videoUploadOnPasses.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.viewportHeight.value","valueA":660,"valueB":660,"isEqual":true},{"path":"config.resolved.viewportHeight.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.viewportWidth.value","valueA":1000,"valueB":1000,"isEqual":true},{"path":"config.resolved.viewportWidth.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.waitForAnimations.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.waitForAnimations.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.watchForFileChanges.value","valueA":false,"valueB":false,"isEqual":true},{"path":"config.resolved.watchForFileChanges.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.specPattern.value","valueA":"cypress/*/**/*.spec.js","valueB":"cypress/*/**/*.spec.js","isEqual":true},{"path":"config.resolved.specPattern.from","valueA":"config","valueB":"config","isEqual":true},{"path":"config.resolved.browsers.value[0].name","valueA":"chrome","valueB":"chrome","isEqual":true},{"path":"config.resolved.browsers.value[0].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.resolved.browsers.value[0].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.resolved.browsers.value[0].displayName","valueA":"Chrome","valueB":"Chrome","isEqual":true},{"path":"config.resolved.browsers.value[0].version","valueA":"116.0.5845.179","valueB":"116.0.5845.179","isEqual":true},{"path":"config.resolved.browsers.value[0].path","valueA":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","valueB":"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome","isEqual":true},{"path":"config.resolved.browsers.value[0].minSupportedVersion","valueA":64,"valueB":64,"isEqual":true},{"path":"config.resolved.browsers.value[0].majorVersion","valueA":"116","valueB":"116","isEqual":true},{"path":"config.resolved.browsers.value[1].name","valueA":"edge","valueB":"edge","isEqual":true},{"path":"config.resolved.browsers.value[1].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.resolved.browsers.value[1].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.resolved.browsers.value[1].displayName","valueA":"Edge","valueB":"Edge","isEqual":true},{"path":"config.resolved.browsers.value[1].version","valueA":"116.0.1938.76","valueB":"116.0.1938.76","isEqual":true},{"path":"config.resolved.browsers.value[1].path","valueA":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","valueB":"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge","isEqual":true},{"path":"config.resolved.browsers.value[1].minSupportedVersion","valueA":79,"valueB":79,"isEqual":true},{"path":"config.resolved.browsers.value[1].majorVersion","valueA":"116","valueB":"116","isEqual":true},{"path":"config.resolved.browsers.value[2].name","valueA":"electron","valueB":"electron","isEqual":true},{"path":"config.resolved.browsers.value[2].channel","valueA":"stable","valueB":"stable","isEqual":true},{"path":"config.resolved.browsers.value[2].family","valueA":"chromium","valueB":"chromium","isEqual":true},{"path":"config.resolved.browsers.value[2].displayName","valueA":"Electron","valueB":"Electron","isEqual":true},{"path":"config.resolved.browsers.value[2].version","valueA":"106.0.5249.51","valueB":"106.0.5249.51","isEqual":true},{"path":"config.resolved.browsers.value[2].path","valueA":"","valueB":"","isEqual":true},{"path":"config.resolved.browsers.value[2].majorVersion","valueA":106,"valueB":106,"isEqual":true},{"path":"config.resolved.browsers.from","valueA":"runtime","valueB":"runtime","isEqual":true},{"path":"config.resolved.hosts.value","valueA":null,"valueB":null,"isEqual":true},{"path":"config.resolved.hosts.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolved.isInteractive.value","valueA":true,"valueB":true,"isEqual":true},{"path":"config.resolved.isInteractive.from","valueA":"default","valueB":"default","isEqual":true},{"path":"config.resolvedNodePath","valueA":"/Users/miguelangarano/.nvm/versions/node/v18.14.2/bin/node","valueB":"/Users/miguelangarano/.nvm/versions/node/v18.14.2/bin/node","isEqual":true},{"path":"config.resolvedNodeVersion","valueA":"18.14.2","valueB":"18.14.2","isEqual":true},{"path":"config.responseTimeout","valueA":30000,"valueB":30000,"isEqual":true},{"path":"config.retries.runMode","valueA":0,"valueB":0,"isEqual":true},{"path":"config.retries.openMode","valueA":0,"valueB":0,"isEqual":true},{"path":"config.screenshotOnRunFailure","valueA":true,"valueB":true,"isEqual":true},{"path":"config.screenshotsFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/screenshots","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/screenshots","isEqual":false},{"path":"config.scrollBehavior","valueA":"top","valueB":"top","isEqual":true},{"path":"config.setupNodeEvents","valueA":"[Function setupNodeEvents]","valueB":"[Function setupNodeEvents]","isEqual":true},{"path":"config.slowTestThreshold","valueA":10000,"valueB":10000,"isEqual":true},{"path":"config.socketId","valueA":"7qpxyfdhn8","valueB":"0arl6nt1ia","isEqual":false},{"path":"config.socketIoCookie","valueA":"__socket","valueB":"__socket","isEqual":true},{"path":"config.socketIoRoute","valueA":"/__socket","valueB":"/__socket","isEqual":true},{"path":"config.specPattern","valueA":"cypress/*/**/*.spec.js","valueB":"cypress/*/**/*.spec.js","isEqual":true},{"path":"config.supportFile","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/support/e2e.ts","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/support/e2e.ts","isEqual":false},{"path":"config.supportFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/support","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/support","isEqual":false},{"path":"config.taskTimeout","valueA":60000,"valueB":60000,"isEqual":true},{"path":"config.testIsolation","valueA":true,"valueB":true,"isEqual":true},{"path":"config.trashAssetsBeforeRuns","valueA":true,"valueB":true,"isEqual":true},{"path":"config.userAgent","valueA":null,"valueB":null,"isEqual":true},{"path":"config.version","valueA":"12.17.4","valueB":"12.17.4","isEqual":true},{"path":"config.video","valueA":true,"valueB":true,"isEqual":true},{"path":"config.videoCompression","valueA":32,"valueB":32,"isEqual":true},{"path":"config.videoUploadOnPasses","valueA":true,"valueB":true,"isEqual":true},{"path":"config.videosFolder","valueA":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-12-demo/cypress/videos","valueB":"/Users/miguelangarano/Documents/GitHub/cypress-cloud-private-fix-cypress-13/e2e/cypress-13-demo/cypress/videos","isEqual":false},{"path":"config.viewportHeight","valueA":660,"valueB":660,"isEqual":true},{"path":"config.viewportWidth","valueA":1000,"valueB":1000,"isEqual":true},{"path":"config.waitForAnimations","valueA":true,"valueB":true,"isEqual":true},{"path":"config.watchForFileChanges","valueA":false,"valueB":false,"isEqual":true},{"path":"config.testingType","valueA":"e2e","valueB":"e2e","isEqual":true},{"path":"status","valueA":"finished","valueB":"finished","isEqual":true},{"path":"runUrl","valueA":"https://app.currents.dev/run/6f943a835aca8b4f","valueB":"https://app.currents.dev/run/271a54ce36c805d4","isEqual":false}] \ No newline at end of file