🔧 Adjust timeout of websocket readiness (playwright)

This commit is contained in:
Belén Albeza
2026-02-02 16:15:08 +01:00
parent 2c4efc6b53
commit cc326f23cf

View File

@@ -253,7 +253,7 @@ export class WorkspacePage extends BaseWebSocketPage {
async #waitForWebSocketReadiness() {
// TODO: find a better event to settle whether the app is ready to receive notifications via ws
await expect(this.pageName).toHaveText("Page 1");
await expect(this.pageName).toHaveText("Page 1", { timeout: 30000 })
}
async sendPresenceMessage(fixture) {