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.
This commit is contained in:
giancarlo
2024-05-04 00:00:24 +07:00
parent 08c86102d8
commit b388605317

View File

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