FIX tests & snapshots

This commit is contained in:
Norbert de Langen 2019-04-18 00:49:16 +02:00
parent 01d74bf9f9
commit 40707f7005
2 changed files with 4 additions and 4 deletions

View File

@ -10267,7 +10267,7 @@ exports[`Storyshots UI|Sidebar/SidebarHeading customBrandImage 1`] = `
.emotion-0 {
width: auto;
height: 100%;
height: auto;
display: block;
max-width: 100%;
}
@ -10406,7 +10406,7 @@ exports[`Storyshots UI|Sidebar/SidebarHeading customBrandImage 1`] = `
.emotion-0 {
width: auto;
height: 100%;
height: auto;
display: block;
max-width: 100%;
}

View File

@ -39,7 +39,7 @@ describe('layout API', () => {
it('should not change selectedPanel if it is undefined in the options', () => {
layoutApi.setOptions({});
expect(getLastSetStateArgs()[0].selectedPanel).toBeUndefined();
expect(getLastSetStateArgs()).toBeUndefined();
});
it('should not change selectedPanel if it is undefined in the options, but something else has changed', () => {
@ -54,7 +54,7 @@ describe('layout API', () => {
// second call is needed to overwrite initial layout
layoutApi.setOptions({ selectedPanel: panelName });
expect(getLastSetStateArgs()[0].selectedPanel).toBeUndefined();
expect(getLastSetStateArgs()).toBeUndefined();
});
it('should not change selectedPanel if it is currently the same, but something else has changed', () => {