Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ const config: PlaywrightTestConfig = {
screenshot: "on",
},
/* Maximum time one test can run for. */
timeout: 100 * 1000,
timeout: 200 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 10000,
timeout: 20000,
},
/* Run tests in files in parallel */
fullyParallel: true,
Expand Down
2 changes: 1 addition & 1 deletion requirements-base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ oauthlib[signedtoken]==3.2.2
# atlassian-python-api
# jira
# requests-oauthlib
openai==1.56.0
openai==1.56.1
# via -r requirements-base.in
packaging==24.2
# via
Expand Down
2 changes: 2 additions & 0 deletions tests/static/e2e/pages/auth-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ export class AuthPage {
}

async registerNewUser(email: string, password: string) {
// wait for 2 minutes to let server settle
await new Promise(resolve => setTimeout(resolve, 120000));
await this.gotoRegisterWithLink()
await this.emailLabel.first().click()
await this.emailLabel.fill(email)
Expand Down
Loading