Skip to content

Commit 8a71d5f

Browse files
committed
Fixed linter fails
1 parent f9de7b8 commit 8a71d5f

File tree

2 files changed

+8
-7
lines changed
  • ui-tests/cypress

2 files changed

+8
-7
lines changed

ui-tests/cypress/lib/dashboard/manage/logger/logger.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ const verifyStaticElementsOfPage = (isEnabled) => {
3030
element: loggerPageElements.STOP_AUTO_REFRESH_BUTTON,
3131
elementText: "Stop Auto-refresh",
3232
});
33-
} else {
33+
}
34+
else {
3435
cy.verifyElement({
3536
element: loggerPageElements.ENABLE_AUTO_REFRESH_TOGGLE,
3637
labelElement: loggerPageElements.ENABLE_AUTO_REFRESH_LABEL,
@@ -78,7 +79,7 @@ const verifyStaticElementsOfPage = (isEnabled) => {
7879
cy.verifyElement({
7980
element: logsDataTableElements().COLUMN_NAME_INFORMATION_SORTABLE_ICON,
8081
});
81-
}
82+
};
8283

8384
const verifyEmptyPageElements = () => {
8485

@@ -142,7 +143,7 @@ const verifyLogsDataTable = ({
142143
element: logsDataTableElements(index).INFORMATION,
143144
elementText: information,
144145
});
145-
}
146+
};
146147

147148
module.exports = {
148149
verifyEmptyPageElements,

ui-tests/cypress/support/elements/dashboard/manage/logger/logger.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ export const loggerPageElements = {
44
PAGE_SUB_TITLE: 'manage-logger-subtitle',
55

66
AUTO_REFRESH_IS_LABEL: 'enable-auto-refresh-auto-refresh-toggle-is-label',
7-
ENABLED_LABEL: 'enable-auto-refresh-auto-refresh-toggle-enabled-label',
8-
AUTO_REFRESH_IS_ENABLED_TOOLTIP: 'enable-auto-refresh-auto-refresh-toggle-tooltip',
9-
STOP_AUTO_REFRESH_BUTTON: 'enable-auto-refresh-auto-refresh-toggle-button',
10-
ENABLE_AUTO_REFRESH_LABEL:'enable-auto-refresh-auto-refresh-toggle-disabled-label',
7+
ENABLED_LABEL: 'enable-auto-refresh-auto-refresh-toggle-enabled-label',
8+
AUTO_REFRESH_IS_ENABLED_TOOLTIP: 'enable-auto-refresh-auto-refresh-toggle-tooltip',
9+
STOP_AUTO_REFRESH_BUTTON: 'enable-auto-refresh-auto-refresh-toggle-button',
10+
ENABLE_AUTO_REFRESH_LABEL: 'enable-auto-refresh-auto-refresh-toggle-disabled-label',
1111
ENABLE_AUTO_REFRESH_TOOLTIP: 'enable-auto-refresh-auto-refresh-toggle-disabled-tooltip',
1212
ENABLE_AUTO_REFRESH_TOGGLE: 'enable-auto-refresh-auto-refresh-toggle-el-switch-core',
1313
};

0 commit comments

Comments
 (0)