Skip to content

Commit

Permalink
fix test after rebase on release/3.3 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
havelaer committed Dec 9, 2017
1 parent 6ef7385 commit d38a031
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/ui/src/modules/ui/components/stories_panel/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ describe('manager.ui.components.stories_panel.index', () => {
test('should render stories only if storiesHierarchies prop exists', () => {
const selectedKind = 'kk';
const selectedStory = 'bb';
const storiesHierarchies = createHierarchies([{ kind: 'kk', namespaces: ['kk'], stories: ['bb'] }]);
const storiesHierarchies = createHierarchies([
{ kind: 'kk', namespaces: ['kk'], stories: ['bb'] },
]);
const wrap = shallow(
<StoriesPanel
storiesHierarchies={storiesHierarchies}
Expand Down Expand Up @@ -55,7 +57,7 @@ describe('manager.ui.components.stories_panel.index', () => {
];
const storiesHierarchies = createHierarchies(stories);
const wrap = shallow(
<LeftPanel
<StoriesPanel
storiesHierarchies={storiesHierarchies}
selectedKind={selectedKind}
selectedStory={selectedStory}
Expand Down

0 comments on commit d38a031

Please sign in to comment.