Skip to content

Commit

Permalink
Update timeout value in e2e test configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed Feb 28, 2024
1 parent b04ecb4 commit 34a2048
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/react/e2e/playwright-ct.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig, devices } from '@playwright/experimental-ct-react'

export default defineConfig({
testDir: './',
timeout: 10000,
timeout: 15000,
fullyParallel: true,
forbidOnly: !!process.env.CI,
workers: process.env.CI ? 1 : undefined,
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/e2e/playwright-ct.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { svelte } from '@sveltejs/vite-plugin-svelte'

export default defineConfig({
testDir: './',
timeout: 10000,
timeout: 15000,
fullyParallel: true,
forbidOnly: !!process.env.CI,
workers: process.env.CI ? 1 : undefined,
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/e2e/playwright-ct.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig, devices } from '@playwright/experimental-ct-vue'

export default defineConfig({
testDir: './',
timeout: 10000,
timeout: 15000,
fullyParallel: true,
forbidOnly: !!process.env.CI,
workers: process.env.CI ? 1 : undefined,
Expand Down

0 comments on commit 34a2048

Please sign in to comment.