Skip to content

Commit

Permalink
tests: slow down browser and increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Dec 6, 2024
1 parent de9bea8 commit 307a17f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config = defineConfig({
testMatch: '*.spec.js',
reportSlowTests: null,
workers: 1,
timeout: 1000 * 60 * 1,
timeout: 1000 * 60 * 1.5,
fullyParallel: false,
forbidOnly: !!process.env.CI,
globalSetup: require.resolve('./test-e2e/before-all.js'),
Expand All @@ -22,7 +22,7 @@ const config = defineConfig({
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'], headless },
use: { ...devices['Desktop Chrome'], headless, launchOptions: { slowMo: 100 } },
}
],
})
Expand Down

0 comments on commit 307a17f

Please sign in to comment.