File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
x-pack/test/api_integration/apis/infra Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,9 @@ export default function({ getService }: FtrProviderContext) {
110110 } ) ;
111111 } ) ;
112112
113- it ( 'highlights field columns' , async ( ) => {
113+ // Skipped since it behaves differently in master and in the 7.X branch
114+ // See https://github.com/elastic/kibana/issues/49959
115+ it . skip ( 'highlights field columns' , async ( ) => {
114116 const { body } = await supertest
115117 . post ( LOG_ENTRIES_HIGHLIGHTS_PATH )
116118 . set ( COMMON_HEADERS )
@@ -140,9 +142,7 @@ export default function({ getService }: FtrProviderContext) {
140142 entries . forEach ( entry => {
141143 entry . columns . forEach ( column => {
142144 if ( 'field' in column && 'highlights' in column && column . highlights . length > 0 ) {
143- // https://github.com/elastic/kibana/issues/49959
144- // expect(column.highlights).to.eql(['generate_test_data/simple_logs']);
145- expect ( column . highlights ) . to . eql ( [ 'generate_test_data' ] ) ;
145+ expect ( column . highlights ) . to . eql ( [ 'generate_test_data/simple_logs' ] ) ;
146146 }
147147 } ) ;
148148 } ) ;
You can’t perform that action at this time.
0 commit comments