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.
t3chguy/dedup-icons-17oct
Richard van der Hoff 2023-01-13 14:14:48 +00:00 committed by GitHub
parent b9e987876b
commit 7975b07128
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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++));
}
});