Update retries in playwright config and refactor account settings
This update changes the number of retries in the Playwright configuration. Additionally, solid improvements have been made in the account settings, including better data semantics for testing, changes to email confirmation, and adding a new E2E test suite for accounts. The sign-up flow was updated and problems with multi-language support logic were fixed.
This commit is contained in:
@@ -18,6 +18,12 @@ export class Mailbox {
|
||||
|
||||
const json = await this.getInviteEmail(mailbox);
|
||||
|
||||
if (!json.body) {
|
||||
console.log(json);
|
||||
|
||||
throw new Error('Email body was not found');
|
||||
}
|
||||
|
||||
const html = (json.body as { html: string }).html;
|
||||
const el = parse(html);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user