fixed errors

This commit is contained in:
Sakshi Gupta
2026-01-27 20:41:12 +05:30
parent cb9d3acd00
commit 4383a30689

View File

@@ -77,7 +77,10 @@ test.describe("Data Masking under Scale & Settings", () => {
const isTabAvailable = await navigateToDataMaskingTab(page, explorer); const isTabAvailable = await navigateToDataMaskingTab(page, explorer);
if (!isTabAvailable) { 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 // Verify the Data Masking editor is visible
@@ -90,7 +93,10 @@ test.describe("Data Masking under Scale & Settings", () => {
const isTabAvailable = await navigateToDataMaskingTab(page, explorer); const isTabAvailable = await navigateToDataMaskingTab(page, explorer);
if (!isTabAvailable) { 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 // 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); const isTabAvailable = await navigateToDataMaskingTab(page, explorer);
if (!isTabAvailable) { 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"); const editorContent = explorer.frame.locator(".settingsV2Editor");