From 40ce20e090a65ece8dae4d1bcd62a6becfc327d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matev=C5=BE=20Jekovec?= Date: Tue, 19 Nov 2024 13:57:39 +0100 Subject: [PATCH] debug --- client-sdk/ts-web/rt/cypress/e2e/playground.cy.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-sdk/ts-web/rt/cypress/e2e/playground.cy.ts b/client-sdk/ts-web/rt/cypress/e2e/playground.cy.ts index c7bd834756..142a15463d 100644 --- a/client-sdk/ts-web/rt/cypress/e2e/playground.cy.ts +++ b/client-sdk/ts-web/rt/cypress/e2e/playground.cy.ts @@ -9,7 +9,7 @@ describe('playground.cy.ts', () => { // (i) it doesn't retry if `w.playground` rejects, and // (ii) it passes when `w.playground` fulfills with `undefined`. cy.window() - .then({timeout: 120_000}, (w) => w.playground) + .then({timeout: 220_000}, (w) => w.playground) .then((w) => { expect(w.playground).to.be.ok; }); @@ -21,7 +21,7 @@ describe('playground.cy.ts', () => { // (i) it doesn't retry if `w.playground` rejects, and // (ii) it passes when `w.playground` fulfills with `undefined`. cy.window() - .then({timeout: 120_000}, (w) => w.playground) + .then({timeout: 220_000}, (w) => w.playground) .then((w) => { expect(w.playground).to.be.ok; });