Skip to content

Commit

Permalink
remove skip test - no, _id is not aggregatable (elastic#111241) (elas…
Browse files Browse the repository at this point in the history
…tic#111390)

Co-authored-by: Matthew Kime <[email protected]>
  • Loading branch information
kibanamachine and mattkime authored Sep 8, 2021
1 parent a41e450 commit 6155af3
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ export default function ({ getService }) {
.then(ensureFieldsAreSorted);
});

// https://github.com/elastic/kibana/issues/79813
it.skip('always returns a field for all passed meta fields', async () => {
it('always returns a field for all passed meta fields', async () => {
await supertest
.get('/api/index_patterns/_fields_for_wildcard')
.query({
Expand All @@ -95,7 +94,7 @@ export default function ({ getService }) {
.expect(200, {
fields: [
{
aggregatable: true,
aggregatable: false,
name: '_id',
esTypes: ['_id'],
readFromDocValues: false,
Expand Down

0 comments on commit 6155af3

Please sign in to comment.