We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0bede1 commit 53c1d87Copy full SHA for 53c1d87
packages/e2e-tests/playwright.config.ts
@@ -20,6 +20,11 @@ export default defineConfig({
20
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
21
reporter: [['list'], ['html']],
22
// 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
+ },
28
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
29
use: {
30
/* Base URL to use in actions like `await page.goto('/')`. */
0 commit comments