mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[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:
parent
f487c7d9a6
commit
c3864a5d10
1 changed files with 3 additions and 4 deletions
|
@ -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',
|
||||
]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue