Skip to content
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

Fix Test Flakiness: MigrationShim can drop v1 ops and migration ops #23478

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {
StablePlace,
type TraitLabel,
} from "@fluid-experimental/tree";
// eslint-disable-next-line import/no-internal-modules
import { type EditLog } from "@fluid-experimental/tree/test/EditLog";
import { describeCompat } from "@fluid-private/test-version-utils";
import { LoaderHeader } from "@fluidframework/container-definitions/internal";
Expand Down Expand Up @@ -211,7 +210,6 @@ describeCompat("Stamped v2 ops", "NoCompat", (getTestObjectProvider, apis) => {
const container2 = await provider.loadContainer(runtimeFactory2);
await waitForContainerConnection(container2);
const testObj2 = (await container2.getEntryPoint()) as TestDataObject;
await provider.ensureSynchronized();
const shim2 = testObj2.getTree<MigrationShim>();
const legacyTree2 = shim2.currentTree as LegacySharedTree;

Expand Down
Loading