Skip to content
Merged
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/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ export const ADMIN_STORAGE_STATE = path.join(
export default defineConfig({
testDir: './tests',
/* Maximum time one test can run for (default 30s). */
timeout: 30 * 1000, // default value
timeout: 60 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* (default 5s)
* For example in `await expect(locator).toHaveText();`
*/
timeout: 5000, // default value
timeout: 10000,
},
/* Maximum time for the entire test run. Since we run the entire suite
on each browser separately this should be enough. */
Expand Down
Loading