From ec0593b1f5bb7fc7be8852d6b187ce3f1cc753cc Mon Sep 17 00:00:00 2001 From: Raju Udava Date: Fri, 22 Oct 2021 14:52:06 +0530 Subject: [PATCH] [test] cypress: formula, lookup, rollup - reduced iterations Signed-off-by: Raju Udava --- cypress/integration/common/3b_formula_column.js | 3 ++- cypress/integration/common/3c_lookup_column.js | 2 +- cypress/integration/common/3d_rollup_column.js | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/cypress/integration/common/3b_formula_column.js b/cypress/integration/common/3b_formula_column.js index 1666f91508..a00152591e 100644 --- a/cypress/integration/common/3b_formula_column.js +++ b/cypress/integration/common/3b_formula_column.js @@ -30,7 +30,8 @@ export const genTest = (type, xcdb) => { // scroll back cy.get(`tbody > :nth-child(1) > [data-col="City"]`).scrollIntoView() - for (let i = 0; i < 10; i++) + // for (let i = 0; i < 10; i++) + for (let i = 3; i < 6; i++) cy.get(`tbody > :nth-child(${i + 1}) > [data-col="${rowName}"]`) .contains(result[i].toString()) .should('exist') diff --git a/cypress/integration/common/3c_lookup_column.js b/cypress/integration/common/3c_lookup_column.js index fcca6d9268..637359c78d 100644 --- a/cypress/integration/common/3c_lookup_column.js +++ b/cypress/integration/common/3c_lookup_column.js @@ -104,7 +104,7 @@ export const genTest = (type, xcdb) => { }) - it('Add Lookup column (Country, CountryId) & Delete', () => { + it.skip('Add Lookup column (Country, CountryId) & Delete', () => { addLookUpColumn('Country', 'CountryId') diff --git a/cypress/integration/common/3d_rollup_column.js b/cypress/integration/common/3d_rollup_column.js index 4706f62830..d71e22eb2c 100644 --- a/cypress/integration/common/3d_rollup_column.js +++ b/cypress/integration/common/3d_rollup_column.js @@ -138,7 +138,7 @@ export const genTest = (type, xcdb) => { }) - it('Add Rollup column (City, CountryId, count) & Delete', () => { + it.skip('Add Rollup column (City, CountryId, count) & Delete', () => { addLookUpColumn('RollUpCol_1', 'City', 'CountryId', 'count')