From fb06b600ba57447a0fa0164b8f732e30e72e2a85 Mon Sep 17 00:00:00 2001 From: BipanKishore Date: Sun, 12 May 2024 20:13:44 +0530 Subject: [PATCH] test twicked --- cypress/component-testing/resizable-api.cy.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cypress/component-testing/resizable-api.cy.tsx b/cypress/component-testing/resizable-api.cy.tsx index 3524039..51844f1 100644 --- a/cypress/component-testing/resizable-api.cy.tsx +++ b/cypress/component-testing/resizable-api.cy.tsx @@ -2,7 +2,6 @@ import React from 'react' import {RCy} from '../utils' import { _2PaneWithMinMax, - noMinMax5PanesSet, withMinMaxAllPaneEqualSizeExcept15PanesSet, withMinMaxEqualSize5PanesSet } from './pane-model-config-sets' @@ -816,11 +815,11 @@ describe('Should make partial hidden visible with setSize', () => { cy.wait(50) .then(() => { - cy.viewport(400, 400) + cy.viewport(500, 500) cy.wait(50) .then(() => { resizableApi.setSize(P1, 1000, BUTTOM_FIRST) - rCy.checkWidths([73, 1, 293]) + rCy.checkWidths([97, 1, 386]) }) }) })