Skip to content

Commit

Permalink
fix broken CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwizp committed Apr 6, 2020
1 parent fb3e918 commit 40beba8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/plugins/data/public/search/aggs/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ import { QueryStart } from '../../query';
import { FieldFormatsStart } from '../../field_formats';

describe('AggTypesComponent', () => {
const core = coreMock.createSetup();
const coreSetup = coreMock.createSetup();
const coreStart = coreMock.createSetup();

const aggTypes = getAggTypes({
uiSettings: core.uiSettings,
notifications: core.notifications,
uiSettings: coreSetup.uiSettings,
query: {} as QueryStart,
getInternalStartServices: () => ({
notifications: coreStart.notifications,
fieldFormats: {} as FieldFormatsStart,
}),
});
Expand Down

0 comments on commit 40beba8

Please sign in to comment.