Skip to content

Commit

Permalink
Updated and unskipped lens breadcrumb test after elastic#74523
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomThomson committed Aug 22, 2020
1 parent f7cfcea commit 1450a5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x-pack/plugins/lens/public/app_plugin/app.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ describe('Lens App', () => {
]);
});

it.skip('sets originatingApp breadcrumb when the document title changes', async () => {
it('sets originatingApp breadcrumb when the document title changes', async () => {
const defaultArgs = makeDefaultArgs();
defaultArgs.originatingApp = 'ultraCoolDashboard';
defaultArgs.getAppNameFromId = () => 'The Coolest Container Ever Made';
Expand All @@ -315,11 +315,11 @@ describe('Lens App', () => {
(defaultArgs.docStorage.load as jest.Mock).mockResolvedValue({
id: '1234',
title: 'Daaaaaaadaumching!',
expression: 'valid expression',
state: {
query: 'fake query',
datasourceMetaData: { filterableIndexPatterns: [{ id: '1', title: 'saved' }] },
filters: [],
},
references: [],
});
await act(async () => {
instance.setProps({ docId: '1234' });
Expand Down

0 comments on commit 1450a5f

Please sign in to comment.