Skip to content

Commit

Permalink
Make test less likely to hang on container creation (#22290)
Browse files Browse the repository at this point in the history
[AB#10957](https://dev.azure.com/fluidframework/235294da-091d-4c29-84fc-cdfc3d90890b/_workitems/edit/10957)

Make the container less likely to hang on container creation.
  • Loading branch information
tyler-cai-microsoft authored Aug 22, 2024
1 parent 1106d0b commit 84f188d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {
ITestObjectProvider,
getContainerEntryPointBackCompat,
summarizeNow,
waitForContainerConnection,
} from "@fluidframework/test-utils/internal";

import { TestSnapshotCache } from "../testSnapshotCache.js";
Expand Down Expand Up @@ -46,6 +47,7 @@ describeCompat("Named root data stores", "FullCompat", (getTestObjectProvider) =
provider = getTestObjectProvider({ persistedCache: testSnapshotCache });
container1 = await provider.makeTestContainer(testContainerConfig);
dataObject1 = await getContainerEntryPointBackCompat<ITestFluidObject>(container1);
await waitForContainerConnection(container1);

await provider.ensureSynchronized();

Expand Down

0 comments on commit 84f188d

Please sign in to comment.