Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
matevz committed Dec 9, 2024
1 parent 563856d commit 40ce20e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client-sdk/ts-web/rt/cypress/e2e/playground.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
Expand All @@ -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;
});
Expand Down

0 comments on commit 40ce20e

Please sign in to comment.