Skip to content

Commit

Permalink
reenable test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkime committed Nov 5, 2020
1 parent 6cd273d commit 86065ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class IndexPatternsTestPlugin
savedObjectsClient,
elasticsearch.client.asScoped(req).asCurrentUser
);
const ids = await service.getIds();
const ids = await service.getIds(true);
return res.ok({ body: ids });
}
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function ({ getService }: PluginFunctionalProviderContext) {
expect(body.fieldFormatMap).to.eql(fieldFormats);
});

it.skip('can get all ids', async () => {
it('can get all ids', async () => {
const response = await supertest.get('/api/index-patterns-plugin/get-all');
// console.log('***************************', response.body);
expect(response.status).to.equal(200);
Expand Down

0 comments on commit 86065ee

Please sign in to comment.