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:
Scarlett Lee 2024-11-05 18:41:35 -08:00 коммит произвёл GitHub
Родитель c6453cb3c6
Коммит 00062eb189
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -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);