Skip to content

Commit

Permalink
Changed playwright config
Browse files Browse the repository at this point in the history
  • Loading branch information
praveen5959 committed Nov 15, 2024
1 parent f126be0 commit 4818c31
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ export default defineConfig({
webServer: {
command: 'pnpm run dev',
url: 'http://localhost:3001',
reuseExistingServer: !process.env.CI,
reuseExistingServer: false,
timeout: 120000, // Increase timeout for server startup
env: {
PORT: '3001',
VITE_PARSEABLE_URL: 'https://demo.parseable.com',
VITE_BASIC_AUTH: 'true',
VITE_USERNAME: 'admin',
VITE_PASSWORD: 'admin',
},
},
});

0 comments on commit 4818c31

Please sign in to comment.