Skip to content

Commit

Permalink
fix up some check type issues
Browse files Browse the repository at this point in the history
  • Loading branch information
yctercero committed Oct 11, 2022
1 parent fe11114 commit 980403b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@
* 2.0.
*/

import { ROLES } from '../../../common/test';
import { getExceptionList, expectedExportedExceptionList } from '../../objects/exception';
import { getNewRule } from '../../objects/rule';
import { ROLES } from '../../../../common/test';
import { getExceptionList, expectedExportedExceptionList } from '../../../objects/exception';
import { getNewRule } from '../../../objects/rule';

import { createCustomRule } from '../../tasks/api_calls/rules';
import { login, visitWithoutDateRange, waitForPageWithoutDateRange } from '../../tasks/login';
import { createCustomRule } from '../../../tasks/api_calls/rules';
import { login, visitWithoutDateRange, waitForPageWithoutDateRange } from '../../../tasks/login';

import { EXCEPTIONS_URL } from '../../urls/navigation';
import { EXCEPTIONS_URL } from '../../../urls/navigation';
import {
deleteExceptionListWithRuleReference,
deleteExceptionListWithoutRuleReference,
exportExceptionList,
searchForExceptionList,
waitForExceptionsTableToBeLoaded,
clearSearchSelection,
} from '../../tasks/exceptions_table';
} from '../../../tasks/exceptions_table';
import {
EXCEPTIONS_TABLE_DELETE_BTN,
EXCEPTIONS_TABLE_LIST_NAME,
EXCEPTIONS_TABLE_SHOWING_LISTS,
} from '../../screens/exceptions';
import { createExceptionList } from '../../tasks/api_calls/exceptions';
import { esArchiverResetKibana } from '../../tasks/es_archiver';
import { TOASTER } from '../../screens/alerts_detection_rules';
} from '../../../screens/exceptions';
import { createExceptionList } from '../../../tasks/api_calls/exceptions';
import { esArchiverResetKibana } from '../../../tasks/es_archiver';
import { TOASTER } from '../../../screens/alerts_detection_rules';

const getExceptionList1 = () => ({
...getExceptionList(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ describe('Add endpoint exception from rule details', () => {
// new exception item displays
cy.get(NO_EXCEPTIONS_SEARCH_RESULTS_PROMPT).should('exist');
});
});
});

0 comments on commit 980403b

Please sign in to comment.