From f35fcde87f825a008b457c3cc128f4c498727546 Mon Sep 17 00:00:00 2001 From: Bilal Godil Date: Thu, 11 Sep 2025 18:37:18 -0700 Subject: [PATCH] fix tests --- apps/e2e/tests/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/e2e/tests/helpers.ts b/apps/e2e/tests/helpers.ts index c26c3c57e..183bcd1e7 100644 --- a/apps/e2e/tests/helpers.ts +++ b/apps/e2e/tests/helpers.ts @@ -227,7 +227,7 @@ export class Mailbox { this.waitForMessagesWithSubject = async (subject: string) => { const maxRetries = 20; for (let i = 0; i < maxRetries; i++) { - const messages = await this.fetchMessages({ noBody: true }); + const messages = await this.fetchMessages(); const withSubject = messages.filter(m => m.subject === subject); if (withSubject.length > 0) { return withSubject;