[Discover] Unskip field tokens tests (#172794)

- Closes https://github.com/elastic/kibana/issues/172756

## Summary

Looks like ES|QL now supports geo fields.

100x
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4240
This commit is contained in:
Julia Rechkunova 2023-12-07 16:22:02 +01:00 committed by GitHub
parent f487c7d9a6
commit c3864a5d10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,8 +60,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
return firstFieldIcons;
}
// FAILING VERSION BUMP: https://github.com/elastic/kibana/issues/172756
describe.skip('discover data grid field tokens', function () {
describe('discover data grid field tokens', function () {
before(async () => {
await security.testUser.setRoles(['kibana_admin', 'test_logstash_reader']);
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional');
@ -131,7 +130,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.unifiedFieldList.clickFieldListItemAdd('ip');
await PageObjects.unifiedFieldList.clickFieldListItemAdd('geo.coordinates');
expect(await findFirstColumnTokens()).to.eql(['Number', 'String', 'String']);
expect(await findFirstColumnTokens()).to.eql(['Number', 'String', 'String', 'String']);
expect(await findFirstDocViewerTokens()).to.eql([
'String',
@ -141,7 +140,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
'Number',
'String',
'String',
'Unknown field',
'String',
'String',
'String',
]);