Cypress: Increase Snowflake test connection timeout (#4915)

This commit is contained in:
Vivek Ratnavel Subramanian 2022-05-12 12:07:09 -07:00 committed by GitHub
parent ab50264ffa
commit ccbbd8b65d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -39,6 +39,7 @@ export const testServiceCreationAndIngestion = (
connectionInput();
// Test the connection
cy.get('[data-testid="test-connection-btn"]').should('exist');
cy.get('[data-testid="test-connection-btn"]').click();

View File

@ -14,7 +14,7 @@
import { goToAddNewServicePage, testServiceCreationAndIngestion } from '../../common/common';
describe('Snowflake Ingestion', () => {
it('add and ingest data', () => {
it('add and ingest data', { defaultCommandTimeout: 8000 }, () => {
goToAddNewServicePage();
const connectionInput = () => {
cy.get('#root_username').type(Cypress.env('snowflakeUsername'));