From 24bf30c970b5fa61a8e98759c255dbdff31754cb Mon Sep 17 00:00:00 2001
From: pnengchu
Date: Thu, 7 Oct 2021 13:48:10 -0500
Subject: [PATCH] cypress build fix
---
web/src/cypress/integration/profile.ts | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/web/src/cypress/integration/profile.ts b/web/src/cypress/integration/profile.ts
index d3e5db0619..0b5f050193 100644
--- a/web/src/cypress/integration/profile.ts
+++ b/web/src/cypress/integration/profile.ts
@@ -16,7 +16,8 @@ function countryCodeCheck(
cy.get('input[name=name]').type(name)
cy.get('input[name=type]').selectByLabel(type)
cy.get('input[name=value]').type(countryCode + value)
- cy.get('button[type=submit]').click()
+ //cy.get('button[type=submit]').click()
+ cy.dialogFinish('Submit')
cy.get('body').should('contain', formattedValue)
})
}