From 7975b07128551341d6f38c53e1d5e876c114f151 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Fri, 13 Jan 2023 14:14:48 +0000 Subject: [PATCH] Deflake new edited-event test (#9908) We don't need to send as many padding events as we were; reducing the spam speeds up the test and deflakes it. --- cypress/e2e/editing/editing.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/e2e/editing/editing.spec.ts b/cypress/e2e/editing/editing.spec.ts index ae334ecf92..e056329a7b 100644 --- a/cypress/e2e/editing/editing.spec.ts +++ b/cypress/e2e/editing/editing.spec.ts @@ -108,7 +108,7 @@ describe("Editing", () => { // send a load of padding events. We make them large, so that they fill the whole screen // and the client doesn't end up paginating into the event we want. let i = 0; - while (i < 20) { + while (i < 10) { await bob.sendMessage(room.room_id, mkPadding(i++)); } @@ -127,7 +127,7 @@ describe("Editing", () => { cy.log(`Bot user sent edit event ${editEventId}`); // ... then a load more padding ... - while (i < 40) { + while (i < 20) { await bob.sendMessage(room.room_id, mkPadding(i++)); } });