File tree Expand file tree Collapse file tree
plugins/index_patterns/server Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export class IndexPatternsTestPlugin
6464 savedObjectsClient ,
6565 elasticsearch . client . asScoped ( req ) . asCurrentUser
6666 ) ;
67- const ids = await service . getIds ( ) ;
67+ const ids = await service . getIds ( true ) ;
6868 return res . ok ( { body : ids } ) ;
6969 }
7070 ) ;
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export default function ({ getService }: PluginFunctionalProviderContext) {
4646 expect ( body . fieldFormatMap ) . to . eql ( fieldFormats ) ;
4747 } ) ;
4848
49- it . skip ( 'can get all ids' , async ( ) => {
49+ it ( 'can get all ids' , async ( ) => {
5050 const response = await supertest . get ( '/api/index-patterns-plugin/get-all' ) ;
5151 // console.log('***************************', response.body);
5252 expect ( response . status ) . to . equal ( 200 ) ;
You can’t perform that action at this time.
0 commit comments