Skip to content

Commit

Permalink
Fix type checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Nov 21, 2024
1 parent d7c9a8c commit 3aa0ce4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ const alertsService = new AlertsService({
elasticsearchClientPromise: Promise.resolve(clusterClient),
dataStreamAdapter: getDataStreamAdapter({ useDataStreamForAlerts }),
elasticsearchAndSOAvailability$,
isServerless: false,
});
const backfillClient = backfillClientMock.create();
const dataPlugin = dataPluginMock.createStartContract();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ describe('Task Runner', () => {
elasticsearchClientPromise: Promise.resolve(clusterClient),
dataStreamAdapter: getDataStreamAdapter({ useDataStreamForAlerts }),
elasticsearchAndSOAvailability$,
isServerless: false,
});
elasticsearchAndSOAvailability$.next(true);

Expand Down Expand Up @@ -544,6 +545,7 @@ describe('Task Runner', () => {
elasticsearchClientPromise: Promise.resolve(clusterClient),
dataStreamAdapter: getDataStreamAdapter({ useDataStreamForAlerts }),
elasticsearchAndSOAvailability$,
isServerless: false,
});
elasticsearchAndSOAvailability$.next(true);

Expand Down

0 comments on commit 3aa0ce4

Please sign in to comment.