Disable stashed ops tests (#23000)
Disable these tests against the services where they always fail. This exercises an experimental feature that is not fully supported yet.
This commit is contained in:
Родитель
c6453cb3c6
Коммит
00062eb189
|
@ -1638,6 +1638,14 @@ describeCompat("stashed ops", "NoCompat", (getTestObjectProvider, apis) => {
|
|||
});
|
||||
|
||||
it("load offline with blob redirect table", async function () {
|
||||
// TODO: AB#22741: Re-enable "load offline with blob redirect table"
|
||||
if (
|
||||
provider.driver.type === "odsp" ||
|
||||
(provider.driver.type === "routerlicious" && provider.driver.endpointName === "frs")
|
||||
) {
|
||||
this.skip();
|
||||
}
|
||||
|
||||
const container = await loader.resolve({ url });
|
||||
const dataStore = (await container.getEntryPoint()) as ITestFluidObject;
|
||||
const map = await dataStore.getSharedObject<ISharedMap>(mapId);
|
||||
|
@ -1856,6 +1864,11 @@ describeCompat("stashed ops", "NoCompat", (getTestObjectProvider, apis) => {
|
|||
|
||||
// TODO: https://github.com/microsoft/FluidFramework/issues/10729
|
||||
it("works with summary while offline", async function () {
|
||||
// TODO: AB#22740: Re-enable "works with summary while offline" on ODSP
|
||||
if (provider.driver.type === "odsp") {
|
||||
this.skip();
|
||||
}
|
||||
|
||||
map1.set("test op 1", "test op 1");
|
||||
await waitForSummary(provider, container1, testContainerConfig);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче