Browse Source

[test] cypress: formula, lookup, rollup - reduced iterations

Signed-off-by: Raju Udava <sivadstala@gmail.com>
pull/693/head
Raju Udava 3 years ago
parent
commit
ec0593b1f5
  1. 3
      cypress/integration/common/3b_formula_column.js
  2. 2
      cypress/integration/common/3c_lookup_column.js
  3. 2
      cypress/integration/common/3d_rollup_column.js

3
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')

2
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')

2
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')

Loading…
Cancel
Save