Skip to content

Commit b3f62e3

Browse files
committed
fix test plugin types
1 parent 929eb89 commit b3f62e3

File tree

1 file changed

+2
-1
lines changed
  • x-pack/test/plugin_functional/plugins/global_search_test/public

1 file changed

+2
-1
lines changed

x-pack/test/plugin_functional/plugins/global_search_test/public/plugin.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ import { createResult } from '../common/utils';
1717
// eslint-disable-next-line @typescript-eslint/no-empty-interface
1818
export interface GlobalSearchTestPluginSetup {}
1919
export interface GlobalSearchTestPluginStart {
20-
findAll: (term: string) => Promise<GlobalSearchResult[]>;
20+
findTest: (term: string) => Promise<GlobalSearchResult[]>;
21+
findReal: (term: string) => Promise<GlobalSearchResult[]>;
2122
}
2223

2324
export interface GlobalSearchTestPluginSetupDeps {

0 commit comments

Comments
 (0)