mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
FIX tests & snapshots
This commit is contained in:
parent
01d74bf9f9
commit
40707f7005
@ -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%;
|
||||
}
|
||||
|
@ -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', () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user