-
Notifications
You must be signed in to change notification settings - Fork 536
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
test: skip flaky stashed ops test #23462
test: skip flaky stashed ops test #23462
Conversation
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.
Copilot reviewed 1 out of 1 changed files in this pull request and generated no comments.
@@ -2204,7 +2204,7 @@ describeCompat( | |||
}, | |||
); | |||
|
|||
itExpects( | |||
itExpects.skip( |
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.
Please let it run for localServer, but you can skip for other drivers while I investigate. This is a new failure compared to the one I fixed last time.
@@ -2204,7 +2207,7 @@ describeCompat( | |||
}, | |||
); | |||
|
|||
itExpects( | |||
(provider?.driver.type === "local" ? itExpects : itExpects.skip)( |
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.
More common way is to do if (provider.driver.type !== "local") { this.skip(); }
inside the test fn. This looks fine too, I'll have it fixed up soon. JFYI if you make more changes like this.
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.
OMG, I never knew about this.skip()
! This is so much better! Changing it now.
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.
Thanks / sorry
Description
Skip "Parallel Forks: Closes (ForkedContainerError and DuplicateBatchError) when hydrating twice and submitting in parallel (via Counter DDS)" since it has been causing multiple build failures.
See https://dev.azure.com/fluidframework/internal/_workitems/edit/27482
Breaking Changes
None