Skip to content

Commit

Permalink
fix: avoid reusing servers for e2e tests (#2558)
Browse files Browse the repository at this point in the history
Hoping to make the `Console e2e` tests more stable.
  • Loading branch information
wesbillman authored Aug 29, 2024
1 parent 1b21b9b commit 6058555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ export default defineConfig({
webServer: {
command: 'ftl dev --recreate',
url: 'http://localhost:8892',
reuseExistingServer: true,
reuseExistingServer: !process.env.CI,
},
});

0 comments on commit 6058555

Please sign in to comment.