Compare commits

...

1 Commits

Author SHA1 Message Date
ahmadshaheer
e10be91bc0 test: enable skipped test suites for HostMetricsLogs and LogsExplorerViews Pagination 2025-05-27 16:03:31 +04:30
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ jest.mock(
},
);
describe.skip('HostMetricsLogs', () => {
describe('HostMetricsLogs', () => {
let capturedQueryRangePayloads: QueryRangePayload[] = [];
const itemHeight = 100;
beforeEach(() => {

View File

@@ -169,7 +169,7 @@ export const verifyFiltersAndOrderBy = (queryData: IBuilderQuery): void => {
}
};
describe.skip('LogsExplorerViews Pagination', () => {
describe('LogsExplorerViews Pagination', () => {
// Array to store captured API request payloads
let capturedPayloads: QueryRangePayload[];