Skip to content

Commit 53c1d87

Browse files
committed
test: fix E2E test timing out on group creation
Namely, `expect(page.locator('.verified-icon-info-msg')).toBeVisible()`. Looks like we should just wait for a bit longer.
1 parent b0bede1 commit 53c1d87

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/e2e-tests/playwright.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ export default defineConfig({
2020
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
2121
reporter: [['list'], ['html']],
2222
// timeout: 30 * 60 * 1000,
23+
expect: {
24+
// Our tests involve network interaction, so we want a higher timeout
25+
// for assertions, such as receiving an invitation to a group.
26+
timeout: 20_000,
27+
},
2328
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2429
use: {
2530
/* Base URL to use in actions like `await page.goto('/')`. */

0 commit comments

Comments
 (0)