Skip to content

Commit 86065ee

Browse files
committed
reenable test
1 parent 6cd273d commit 86065ee

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test/plugin_functional/plugins/index_patterns/server/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
);

test/plugin_functional/test_suites/data_plugin/index_patterns.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)