[8.12] [Discover] Unskip field tokens tests (#172794) (#172841)

# Backport

This will backport the following commits from `main` to `8.12`:
- [[Discover] Unskip field tokens tests
(#172794)](https://github.com/elastic/kibana/pull/172794)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Julia
Rechkunova","email":"julia.rechkunova@elastic.co"},"sourceCommit":{"committedDate":"2023-12-07T15:22:02Z","message":"[Discover]
Unskip field tokens tests (#172794)\n\n- Closes
https://github.com/elastic/kibana/issues/172756\r\n\r\n##
Summary\r\n\r\nLooks like ES|QL now supports geo
fields.\r\n\r\n100x\r\nhttps://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4240","sha":"c3864a5d1001526f0da05bd0fe4d1f23a8bcb503","branchLabelMapping":{"^v8.13.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Feature:Discover","release_note:skip","Team:DataDiscovery","backport:prev-minor","v8.13.0"],"number":172794,"url":"https://github.com/elastic/kibana/pull/172794","mergeCommit":{"message":"[Discover]
Unskip field tokens tests (#172794)\n\n- Closes
https://github.com/elastic/kibana/issues/172756\r\n\r\n##
Summary\r\n\r\nLooks like ES|QL now supports geo
fields.\r\n\r\n100x\r\nhttps://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4240","sha":"c3864a5d1001526f0da05bd0fe4d1f23a8bcb503"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v8.13.0","labelRegex":"^v8.13.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/172794","number":172794,"mergeCommit":{"message":"[Discover]
Unskip field tokens tests (#172794)\n\n- Closes
https://github.com/elastic/kibana/issues/172756\r\n\r\n##
Summary\r\n\r\nLooks like ES|QL now supports geo
fields.\r\n\r\n100x\r\nhttps://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/4240","sha":"c3864a5d1001526f0da05bd0fe4d1f23a8bcb503"}}]}]
BACKPORT-->

---------

Co-authored-by: Julia Rechkunova <julia.rechkunova@elastic.co>
Co-authored-by: Julia Rechkunova <julia.rechkunova@gmail.com>
This commit is contained in:
Kibana Machine 2023-12-08 06:23:13 -05:00 committed by GitHub
parent a1aac56df3
commit 16c3bbec34
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 ES PROMOTION: https://github.com/elastic/kibana/issues/172874
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');
@ -129,21 +128,17 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.unifiedFieldList.clickFieldListItemAdd('bytes');
await PageObjects.unifiedFieldList.clickFieldListItemAdd('extension');
await PageObjects.unifiedFieldList.clickFieldListItemAdd('ip');
await PageObjects.unifiedFieldList.clickFieldListItemAdd('geo.coordinates');
expect(await findFirstColumnTokens()).to.eql(['Number', 'String', 'String']);
expect(await findFirstDocViewerTokens()).to.eql([
const docViewerTokens = await findFirstDocViewerTokens();
expect(docViewerTokens?.slice(0, 6)).to.eql([
'String',
'String',
'Date',
'String',
'Number',
'String',
'String',
'Unknown field',
'String',
'String',
]);
});