From 1ad1d820d89e45c38613168afecdca66d1fac825 Mon Sep 17 00:00:00 2001 From: Sachin Chaurasiya Date: Thu, 20 Jun 2024 15:07:27 +0530 Subject: [PATCH] test: fix custom properties spec (#16732) --- .../main/resources/ui/cypress/common/Utils/CustomProperty.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/cypress/common/Utils/CustomProperty.ts b/openmetadata-ui/src/main/resources/ui/cypress/common/Utils/CustomProperty.ts index 234c0d1deed..1b18853f04e 100644 --- a/openmetadata-ui/src/main/resources/ui/cypress/common/Utils/CustomProperty.ts +++ b/openmetadata-ui/src/main/resources/ui/cypress/common/Utils/CustomProperty.ts @@ -523,9 +523,9 @@ export const editCreatedProperty = (propertyName: string, type?: string) => { /** * @link https://docs.cypress.io/guides/references/configuration#Timeouts * default responseTimeout is 30000ms which is not enough for the patch request - * so we need to increase the responseTimeout to 50000ms + * so we need to increase the responseTimeout to 70000ms for AUT environment in PATCH request */ - cy.wait('@checkPatchForDescription', { responseTimeout: 50000 }); + cy.wait('@checkPatchForDescription', { responseTimeout: 70000 }); cy.get('.ant-modal-wrap').should('not.exist');