Skip to content

Commit 606c8a7

Browse files
committed
fix(e2e): address review feedback on kafka variant config
- Reduce CI retries from 2 to 1 - Switch local reporter from list to markdown for LLM-friendly output - Add localhost:3002 to allowedOrigins (external Docker port for this variant)
1 parent f01e2be commit 606c8a7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/tests/test-variant-kafka/config/console.config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ redpanda:
1717

1818
server:
1919
listenPort: 3000
20-
allowedOrigins: ["http://localhost:3000", "http://localhost:3001"]
20+
allowedOrigins: ["http://localhost:3000", "http://localhost:3001", "http://localhost:3002"]

frontend/tests/test-variant-kafka/playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dotenv.config();
55

66
const reporters = process.env.CI
77
? [['github' as const], ['html' as const, { outputFolder: 'playwright-report' }]]
8-
: [['list' as const], ['html' as const, { outputFolder: 'playwright-report' }]];
8+
: [['markdown' as const], ['html' as const, { outputFolder: 'playwright-report' }]];
99

1010
const config = defineConfig({
1111
expect: {
@@ -18,7 +18,7 @@ const config = defineConfig({
1818

1919
forbidOnly: !!process.env.CI,
2020

21-
retries: process.env.CI ? 2 : 0,
21+
retries: process.env.CI ? 1 : 0,
2222

2323
workers: process.env.CI ? 4 : undefined,
2424

0 commit comments

Comments
 (0)