fix: in cypress tests, increased wait time for preview-table to update (#3715)

Signed-off-by: kushthedude <kushthedude@gmail.com>
This commit is contained in:
Kush Trivedi 2021-03-12 14:18:48 +05:30 committed by GitHub
parent 58f17d5aff
commit 6c3a4cfa88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,7 +214,7 @@ Cypress.Commands.add('waitForOrOperation', () => {
*/
Cypress.Commands.add('typeExpression', (expression) => {
cy.get('textarea.expression-preview-code').type(expression);
cy.wait(250); // eslint-disable-line
cy.wait(500); // eslint-disable-line
});
/**