Skip to content

Commit 457e940

Browse files
committed
Run eslint fo fix the issues.
1 parent 84e6394 commit 457e940

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

ui-tests/cypress/e2e/dashboard/dashboards/dashboards.cy.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,5 @@ describe('Create New Custom Dashboard', () => {
144144
dashboardsHelper.closeNotification();
145145
dashboardsHelper.searchDashboard(editedDashboard.dashboardName);
146146
dashboardsHelper.verifyDashboardShouldBeDeleted();
147-
148147
});
149148
});

ui-tests/cypress/lib/dashboard/dashboards/dashboards.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,13 @@ const typeViewOnlyPermissionEmail = (viewPermissionEmail) => {
227227
};
228228

229229
const searchDashboard = (dashboardName) => {
230-
cy.clickElement(sidebarElements.SIDEBAR_MENU_OPTIONS.DASHBOARDS)
230+
cy.clickElement(sidebarElements.SIDEBAR_MENU_OPTIONS.DASHBOARDS);
231231
cy.typeInput(dashboardsMenuElements().DASHBOARD_SEARCH_BOX, dashboardName);
232-
}
232+
};
233233

234234
const verifyDashboardShouldBeDeleted = () => {
235235
cy.shouldNotExist(customDashboardElements.DASHBOARD_ITEM);
236-
}
236+
};
237237

238238

239239
module.exports = {

0 commit comments

Comments
 (0)