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

This commit is contained in:
Matthew Kime 2021-09-07 08:52:55 -05:00 committed by GitHub
parent cf45c39e0f
commit 7e9d2965da
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,