Handle connection string account types in getTestExplorerUrl switch

This commit is contained in:
Asier Isayas
2026-08-13 15:12:04 -04:00
parent d92248024a
commit b98905f8be
+7
View File
@@ -249,6 +249,13 @@ export async function getTestExplorerUrl(accountType: TestAccount, options?: Tes
params.set("enableaaddataplane", "true"); params.set("enableaaddataplane", "true");
} }
break; break;
case TestAccount.SQLConnectionString:
case TestAccount.TableConnectionString:
case TestAccount.GremlinConnectionString:
// Connection string (account key) login navigates directly to hostedExplorer.html and doesn't
// use this iframe test-explorer URL or any RBAC/AAD data-plane token.
break;
} }
if (iframeSrc) { if (iframeSrc) {