Temporarily increased test timeout for Comments-UI

refs https://github.com/TryGhost/Product/issues/3867

- this temporarily increases the timeout to avoid some flaky CI
  performance until the cause has been fixed
This commit is contained in:
Daniel Lockyer 2023-09-12 12:40:43 +02:00 committed by Daniel Lockyer
parent 841fb1f5c9
commit 35c70fcf2a

View File

@ -17,7 +17,7 @@ export default defineConfig({
workers: process.env.CI ? '100%' : undefined, workers: process.env.CI ? '100%' : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */ /* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html', reporter: 'html',
timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 10000, timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 20000,
expect: { expect: {
timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 5000 timeout: process.env.PLAYWRIGHT_SLOWMO ? 100000 : 5000
}, },