Disable most tests while sorting out account setup. Add debug tracing.

This commit is contained in:
Jade Welton
2026-07-08 09:19:05 -07:00
parent 2f487f83b2
commit 27ffa7208b
28 changed files with 69 additions and 84 deletions
+2
View File
@@ -116,6 +116,7 @@ export async function getTestExplorerUrl(accountType: TestAccount, options?: Tes
// We can't retrieve AZ CLI credentials from the browser so we get them here.
const token = await getAzureCLICredentialsToken();
const accountName = getAccountName(accountType);
console.log(`DEBUG: Using account name: ${accountName} for account type: ${accountType}`);
const params = new URLSearchParams();
params.set("accountName", accountName);
params.set("resourceGroup", resourceGroupName);
@@ -128,6 +129,7 @@ export async function getTestExplorerUrl(accountType: TestAccount, options?: Tes
//const nosqlRbacToken = getNoSqlRbacToken();
const nosqlRbacToken = process.env.NOSQL_TESTACCOUNT_TOKEN;
console.log(`DEBUG: Using nosqlRbacToken: ${nosqlRbacToken ? "Present" : "Not Present"}`);
const nosqlReadOnlyRbacToken = process.env.NOSQL_READONLY_TESTACCOUNT_TOKEN;
const nosqlContainerCopyRbacToken = process.env.NOSQL_CONTAINERCOPY_TESTACCOUNT_TOKEN;