-
Notifications
You must be signed in to change notification settings - Fork 635
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add swaps entry points + swap validation to e2e #6070
Conversation
@@ -537,7 +538,7 @@ export function useSwapInputsController({ | |||
}; | |||
|
|||
const quoteFetchingInterval = useAnimatedInterval({ | |||
intervalMs: 12_000, | |||
intervalMs: IS_TEST ? 999_999 : 12_000, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't this be a problem and cause flakiness whenever if the quote is no longer valid?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
potentially yeah. i guess the only fix would be to mock the quote then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can approve after you roll back that change!
going to work on swap quote mocking |
Added: