From b388605317f6458b70af4be1d8f7501949bcf490 Mon Sep 17 00:00:00 2001 From: giancarlo Date: Sat, 4 May 2024 00:00:24 +0700 Subject: [PATCH] Remove unnecessary console.log in auth tests The redundant console.log statement that was previously used for debugging, was removed from the auth.po.ts file of authentication tests. This change keeps the code cleaner and prevents unnecessary output during testing. --- apps/e2e/tests/authentication/auth.po.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/e2e/tests/authentication/auth.po.ts b/apps/e2e/tests/authentication/auth.po.ts index dc3973a4c..21c3a6176 100644 --- a/apps/e2e/tests/authentication/auth.po.ts +++ b/apps/e2e/tests/authentication/auth.po.ts @@ -57,8 +57,6 @@ export class AuthPageObject { return expect(async () => { const res = await this.mailbox.visitMailbox(email, params); - console.log(res); - expect(res).not.toBeNull(); }).toPass(); }