From 4383a306896035dea9231c25bc4e7cd3585ecc31 Mon Sep 17 00:00:00 2001 From: Sakshi Gupta Date: Tue, 27 Jan 2026 20:41:12 +0530 Subject: [PATCH] fixed errors --- test/sql/scaleAndSettings/dataMasking.spec.ts | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/test/sql/scaleAndSettings/dataMasking.spec.ts b/test/sql/scaleAndSettings/dataMasking.spec.ts index 40e7cbd92..99cadd09c 100644 --- a/test/sql/scaleAndSettings/dataMasking.spec.ts +++ b/test/sql/scaleAndSettings/dataMasking.spec.ts @@ -77,7 +77,10 @@ test.describe("Data Masking under Scale & Settings", () => { const isTabAvailable = await navigateToDataMaskingTab(page, explorer); if (!isTabAvailable) { - test.skip(true, "Data Masking tab is not available. Test account may not have EnableDynamicDataMasking capability."); + test.skip( + true, + "Data Masking tab is not available. Test account may not have EnableDynamicDataMasking capability.", + ); } // Verify the Data Masking editor is visible @@ -90,7 +93,10 @@ test.describe("Data Masking under Scale & Settings", () => { const isTabAvailable = await navigateToDataMaskingTab(page, explorer); if (!isTabAvailable) { - test.skip(true, "Data Masking tab is not available. Test account may not have EnableDynamicDataMasking capability."); + test.skip( + true, + "Data Masking tab is not available. Test account may not have EnableDynamicDataMasking capability.", + ); } // Verify the editor contains the expected JSON structure fields @@ -108,7 +114,10 @@ test.describe("Data Masking under Scale & Settings", () => { const isTabAvailable = await navigateToDataMaskingTab(page, explorer); if (!isTabAvailable) { - test.skip(true, "Data Masking tab is not available. Test account may not have EnableDynamicDataMasking capability."); + test.skip( + true, + "Data Masking tab is not available. Test account may not have EnableDynamicDataMasking capability.", + ); } const editorContent = explorer.frame.locator(".settingsV2Editor");