fix(web-next): harden gateway handshake/call flow, make e2e env-configurable, and refresh audit#179
Merged
dgarson merged 1 commit intodgarson/forkfrom Feb 24, 2026
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
import.meta.env.VITE_GATEWAY_URLwith aws://localhost:18789fallback, replacing the previous hardcoded value inuseGateway.useGatewaysocall()awaits a successful hello handshake instead of rejecting immediately, and track/resolve/reject that promise across open/error/close/timeout flows.connectedon timeout.PLAYWRIGHT_BASE_URL(fallbackhttp://127.0.0.1:5173) and to write screenshots to ephemeral artifact paths withtestInfo.outputPath(...)rather than writing tracked files.apps/web-next/screenshots/to.gitignoreand remove previously committed screenshot binaries to avoid repository churn.docs/branch-upstream-audit.mdwith a focused document that lists remaining unresolved issues and records the specific fixes applied in this pass.Testing
git diff --check, which reported no whitespace/check issues.pnpm -C apps/web-next build; the build failed in this environment due to missingnode_modulesand missing React/type dependencies, not because of the code changes (build failure is an environment dependency issue).Codex Task