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
Three issues corrected:
- Add `setGlobalDevModeChecks({ inputStabilityCheck: 'never' })` in
beforeAll to suppress the reselect false-positive thrown by
selectBridgeAppState (which spreads controller slices into a new object
on every call and is app code we cannot change).
- Add missing `trade` field to makeEvmQuote factory; calcRelayerFee
destructures { quote, trade } from the quote response and crashes when
trade is absent.
- Replace the post-render dispatch spy with a store state assertion.
useDispatch() captures store.dispatch at mount time, so a spy set up
after render is never called. Reading selectSelectedQuoteRequestId from
the store after the press is the correct pattern.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments