You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#1562 by routing single-pointer timed pans through the existing native continuous XCTest drag profile. The dense per-sample planned bridge can report success without delivering pan updates on current iOS simulators.
Two-pointer plans still use the exact synchronized samples, and endpoint-hold fling plans retain their fast-swipe profile. The gesture-plan ADR now documents the platform-specific lowering decision.
Validation
Regression proof: the focused runner test was red before the fix with XCTAssertEqual failed: ("sampled") is not equal to ("continuousPan"); it passes after the fix.
Passed production iOS runner build: pnpm build:xcuitest:ios.
Passed pnpm format and pnpm check:affected --run; the affected selector delegated the Swift runner lane to GitHub.
Verified through the public CLI on an iPhone 17 Pro / iOS 26.2 simulator: a 400 ms timed pan preserved durationMs and executionProfile and moved the Home ScrollView content.
Reviewed exact head 8ec77a3d2fd663659f51e95a3ffd89333ea40964 — no actionable findings. The production route correctly limits continuous XCTest synthesis to single-pointer timed pans while preserving endpoint-hold fast swipes and sampled multi-pointer gestures. The amended ADR captures the iOS-specific interpolation tradeoff, the routing regression test is meaningful, CI is green, and GitHub reports a clean merge state. The reported live iPhone run covers the prior false-success symptom. Ready for human review.
Residual evidence caveat: response durationMs/executionProfile describe the plan rather than independently measuring delivered timing; a future validation capture of runner start/end uptime would make that claim directly auditable. No separately authorized cross-vendor review was run.
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
ready-for-humanValid work that needs human implementation, judgment, or maintainer merge
1 participant
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.
Summary
Fixes #1562 by routing single-pointer timed pans through the existing native continuous XCTest drag profile. The dense per-sample planned bridge can report success without delivering pan updates on current iOS simulators.
Two-pointer plans still use the exact synchronized samples, and endpoint-hold fling plans retain their fast-swipe profile. The gesture-plan ADR now documents the platform-specific lowering decision.
Validation