Skip to content

Commit f495b7d

Browse files
Updated and unskipped lens breadcrumb test after #74523 (#75714)
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
1 parent 8fe62c3 commit f495b7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x-pack/plugins/lens/public/app_plugin/app.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ describe('Lens App', () => {
300300
]);
301301
});
302302

303-
it.skip('sets originatingApp breadcrumb when the document title changes', async () => {
303+
it('sets originatingApp breadcrumb when the document title changes', async () => {
304304
const defaultArgs = makeDefaultArgs();
305305
defaultArgs.originatingApp = 'ultraCoolDashboard';
306306
defaultArgs.getAppNameFromId = () => 'The Coolest Container Ever Made';
@@ -315,11 +315,11 @@ describe('Lens App', () => {
315315
(defaultArgs.docStorage.load as jest.Mock).mockResolvedValue({
316316
id: '1234',
317317
title: 'Daaaaaaadaumching!',
318-
expression: 'valid expression',
319318
state: {
320319
query: 'fake query',
321-
datasourceMetaData: { filterableIndexPatterns: [{ id: '1', title: 'saved' }] },
320+
filters: [],
322321
},
322+
references: [],
323323
});
324324
await act(async () => {
325325
instance.setProps({ docId: '1234' });

0 commit comments

Comments
 (0)