diff --git a/src/Explorer/Controls/Settings/__snapshots__/SettingsComponent.test.tsx.snap b/src/Explorer/Controls/Settings/__snapshots__/SettingsComponent.test.tsx.snap index ea6fe2864..707e0ca4d 100644 --- a/src/Explorer/Controls/Settings/__snapshots__/SettingsComponent.test.tsx.snap +++ b/src/Explorer/Controls/Settings/__snapshots__/SettingsComponent.test.tsx.snap @@ -300,6 +300,7 @@ exports[`SettingsComponent renders 1`] = ` }, } } + isReadOnly={false} /> { it.each<[string, Platform, boolean, Partial, Partial]>([ [ - "the SQL API, on Fabric read-only", + "the SQL API, on Fabric read-only (mirrored)", Platform.Fabric, false, { capabilities: [], enableMultipleWriteLocations: true }, - { fabricContext: { isReadOnly: true } as FabricContext }, + { + fabricContext: { + isReadOnly: true, + artifactType: CosmosDbArtifactType.MIRRORED_KEY, + } as FabricContext, + }, ], [ - "the SQL API, on Fabric non read-only", + "the SQL API, on Fabric non read-only (native)", Platform.Fabric, false, { capabilities: [], enableMultipleWriteLocations: true }, - { fabricContext: { isReadOnly: false } as FabricContext }, + { + fabricContext: { + isReadOnly: false, + artifactType: CosmosDbArtifactType.NATIVE, + } as FabricContext, + }, ], [ "the SQL API, on Portal",