remove skip test - no, _id is not aggregatable (#111241) (#111390)

Co-authored-by: Matthew Kime <matt@mattki.me>
This commit is contained in:
Kibana Machine 2021-09-08 00:34:09 -04:00 committed by GitHub
parent a41e450658
commit 6155af332a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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({
@ -95,7 +94,7 @@ export default function ({ getService }) {
.expect(200, {
fields: [
{
aggregatable: true,
aggregatable: false,
name: '_id',
esTypes: ['_id'],
readFromDocValues: false,