From 60987c963ca6fb3a6cb3b1c5cec0ff4ef858fbbd Mon Sep 17 00:00:00 2001 From: nishthaAhujaa Date: Wed, 7 Jan 2026 15:04:53 +0530 Subject: [PATCH] added spaces --- test/sql/indexAdvisor.spec.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/sql/indexAdvisor.spec.ts b/test/sql/indexAdvisor.spec.ts index 5c2023800..10c930b47 100644 --- a/test/sql/indexAdvisor.spec.ts +++ b/test/sql/indexAdvisor.spec.ts @@ -24,7 +24,6 @@ test.afterAll(async () => { // Helper function to set up query tab and navigate to Index Advisor async function setupIndexAdvisorTab(page: Page, customQuery?: string) { - const explorer = await DataExplorer.open(page, TestAccount.SQL); const databaseNode = await explorer.waitForNode(DATABASE_ID); await databaseNode.expand(); @@ -69,7 +68,7 @@ test("Verify UI sections are collapsible", async ({ page }) => { // Verify both section headers exist const includedHeader = explorer.frame.getByText("Included in Current Policy", { exact: true }); const notIncludedHeader = explorer.frame.getByText("Not Included in Current Policy", { exact: true }); - + await expect(includedHeader).toBeVisible(); await expect(notIncludedHeader).toBeVisible(); @@ -118,7 +117,7 @@ test("Verify index suggestions and apply potential index", async ({ page }) => { // The composite index should be /partitionKey ASC, /randomData ASC const checkboxes = explorer.frame.locator('input[type="checkbox"]'); const checkboxCount = await checkboxes.count(); - + // Should have at least one checkbox for the potential index expect(checkboxCount).toBeGreaterThan(0);