Skip to content

Commit 40ff82d

Browse files
author
Wylie Conlon
authored
[Lens] Fix broken test (#70117)
1 parent f4e7f14 commit 40ff82d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

x-pack/plugins/lens/public/indexpattern_datasource/loader.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,7 @@ function mockClient() {
177177
} as unknown) as Pick<SavedObjectsClientContract, 'find' | 'bulkGet'>;
178178
}
179179

180-
// Failing: See https://github.com/elastic/kibana/issues/70104
181-
describe.skip('loader', () => {
180+
describe('loader', () => {
182181
describe('loadIndexPatterns', () => {
183182
it('should not load index patterns that are already loaded', async () => {
184183
const cache = await loadIndexPatterns({
@@ -318,7 +317,6 @@ describe.skip('loader', () => {
318317
a: sampleIndexPatterns.a,
319318
},
320319
layers: {},
321-
showEmptyFields: false,
322320
});
323321
expect(storage.set).toHaveBeenCalledWith('lens-settings', {
324322
indexPatternId: 'a',
@@ -341,7 +339,6 @@ describe.skip('loader', () => {
341339
b: sampleIndexPatterns.b,
342340
},
343341
layers: {},
344-
showEmptyFields: false,
345342
});
346343
});
347344

0 commit comments

Comments
 (0)