Skip to content

Commit

Permalink
fix(#3247): Add timeout to open new data view
Browse files Browse the repository at this point in the history
  • Loading branch information
tenthe committed Sep 24, 2024
1 parent 38a6e4b commit 27cdabd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/cypress/support/utils/datalake/DataLakeUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class DataLakeUtils {
widgetType: string,
) {
DataLakeUtils.goToDatalake();
DataLakeUtils.createAndEditDataView(dataViewName);
DataLakeUtils.createAndEditDataView();

DataLakeUtils.selectTimeRange(
new Date(2020, 10, 20, 22, 44),
Expand Down Expand Up @@ -162,7 +162,7 @@ export class DataLakeUtils {

public static createAndEditDataView() {
// Create new data view
cy.dataCy('open-new-data-view').click();
cy.dataCy('open-new-data-view', { timeout: 10000 }).click();
}

public static removeWidget(dataViewName: string) {
Expand Down

0 comments on commit 27cdabd

Please sign in to comment.