Conversation
Signed-off-by: Peter Wielander <mittgfu@gmail.com>
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
🧪 E2E Test Results❌ Some tests failed Summary
❌ Failed Tests💻 Local Development (2 failed)astro-stable (2 failed):
🌍 Community Worlds (17 failed)mongodb (1 failed):
redis (1 failed):
starter (14 failed):
turso (1 failed):
Details by Category✅ ▲ Vercel Production
❌ 💻 Local Development
✅ 📦 Local Production
✅ 🐘 Local Postgres
✅ 🪟 Windows
❌ 🌍 Community Worlds
❌ Some E2E test jobs failed:
Check the workflow run for details.
Check the workflow run for details. |
📊 Benchmark Results
workflow with no steps💻 Local Development
▲ Production (Vercel)
🔍 Observability: Express | Nitro | Next.js (Turbopack) workflow with 1 step💻 Local Development
▲ Production (Vercel)
🔍 Observability: Next.js (Turbopack) | Express | Nitro workflow with 10 sequential steps💻 Local Development
▲ Production (Vercel)
🔍 Observability: Express | Nitro | Next.js (Turbopack) Promise.all with 10 concurrent steps💻 Local Development
▲ Production (Vercel)
🔍 Observability: Express | Nitro | Next.js (Turbopack) Promise.all with 25 concurrent steps💻 Local Development
▲ Production (Vercel)
🔍 Observability: Express | Next.js (Turbopack) | Nitro Promise.race with 10 concurrent steps💻 Local Development
▲ Production (Vercel)
🔍 Observability: Next.js (Turbopack) | Nitro | Express Promise.race with 25 concurrent steps💻 Local Development
▲ Production (Vercel)
🔍 Observability: Express | Nitro | Next.js (Turbopack) Stream Benchmarks (includes TTFB metrics)workflow with stream💻 Local Development
▲ Production (Vercel)
🔍 Observability: Next.js (Turbopack) | Nitro | Express SummaryFastest Framework by WorldWinner determined by most benchmark wins
Fastest World by FrameworkWinner determined by most benchmark wins
Column Definitions
Worlds:
|
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
| test.skip(); | ||
| return; | ||
| } | ||
|
|
…ng, retry logic, or server health diagnostics, causing cryptic failures if the server becomes unavailable during navigation.
|
|
||
| // Navigate to run detail page | ||
| const baseUrl = webPage.url().split('?')[0]; | ||
| const runDetailUrl = `${baseUrl}run/${runId}`; |
📸 Web UI ScreenshotsScreenshots captured from the Web UI E2E tests.
💻 Local Backend
▲ Vercel Backend
|
| env: { | ||
| ...process.env, | ||
| WORKFLOW_TARGET_WORLD: '', | ||
| WORKFLOW_VERCEL_ENV: '', | ||
| WORKFLOW_VERCEL_AUTH_TOKEN: '', | ||
| WORKFLOW_VERCEL_PROJECT: '', | ||
| WORKFLOW_VERCEL_TEAM: '', | ||
| WORKFLOW_LOCAL_DATA_DIR: '', | ||
| }, |
There was a problem hiding this comment.
| env: { | |
| ...process.env, | |
| WORKFLOW_TARGET_WORLD: '', | |
| WORKFLOW_VERCEL_ENV: '', | |
| WORKFLOW_VERCEL_AUTH_TOKEN: '', | |
| WORKFLOW_VERCEL_PROJECT: '', | |
| WORKFLOW_VERCEL_TEAM: '', | |
| WORKFLOW_LOCAL_DATA_DIR: '', | |
| }, | |
| env: (() => { | |
| const env = { ...process.env }; | |
| delete env.WORKFLOW_TARGET_WORLD; | |
| delete env.WORKFLOW_VERCEL_ENV; | |
| delete env.WORKFLOW_VERCEL_AUTH_TOKEN; | |
| delete env.WORKFLOW_VERCEL_PROJECT; | |
| delete env.WORKFLOW_VERCEL_TEAM; | |
| delete env.WORKFLOW_LOCAL_DATA_DIR; | |
| return env; | |
| })(), |
Environment variables set to empty strings instead of being properly removed in Playwright config
No description provided.