1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-23 22:36:32 +02:00

Chore: Desktop: Increase Playwright test timeout by 20s in CI (#9497)

This commit is contained in:
Henry Heino
2023-12-13 11:45:58 -08:00
committed by GitHub
parent e0cc8da884
commit 09b5ef6713

View File

@@ -23,6 +23,9 @@ export default defineConfig({
// Reporter to use. See https://playwright.dev/docs/test-reporters
reporter: process.env.CI ? 'line' : 'html',
// The CI machines can sometimes be very slow. Increase per-test timeout in CI.
timeout: process.env.CI ? 50_000 : 30_000, // milliseconds
// Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions.
use: {
// Base URL to use in actions like `await page.goto('/')`.