Skip to content

Commit

Permalink
[Logs UI] Adapt test to ES highlighting changes and unskip (#163592)
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort authored Aug 10, 2023
1 parent a5af1aa commit f422484
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ export default function ({ getService }: FtrProviderContext) {
after(() => esArchiver.unload('x-pack/test/functional/es_archives/infra/simple_logs'));

describe('/log_entries/highlights', () => {
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/163486
describe.skip('with the default source', () => {
describe('with the default source', () => {
before(() => kibanaServer.savedObjects.cleanStandardList());
after(() => kibanaServer.savedObjects.cleanStandardList());

Expand Down Expand Up @@ -120,7 +119,7 @@ export default function ({ getService }: FtrProviderContext) {
entries.forEach((entry) => {
entry.columns.forEach((column) => {
if ('message' in column && 'highlights' in column.message[0]) {
expect(column.message[0].highlights).to.eql(['message', 'of', 'document', '0']);
expect(column.message[0].highlights).to.eql(['message of document 0']);
}
});
});
Expand Down

0 comments on commit f422484

Please sign in to comment.