mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:21:07 +08:00
Add story for Panel with caught exception
This commit is contained in:
parent
479196228a
commit
7641f8374d
@ -97,3 +97,11 @@ export const NoInteractions: Story = {
|
||||
interactions: [],
|
||||
},
|
||||
};
|
||||
|
||||
export const CaughtException: Story = {
|
||||
args: {
|
||||
hasException: true,
|
||||
interactions: [],
|
||||
caughtException: new TypeError("Cannot read properties of undefined (reading 'args')"),
|
||||
},
|
||||
};
|
||||
|
@ -119,4 +119,11 @@ export const getCalls = (finalStatus: CallStates) => {
|
||||
};
|
||||
|
||||
export const getInteractions = (finalStatus: CallStates) =>
|
||||
getCalls(finalStatus).filter((call) => call.interceptable);
|
||||
getCalls(finalStatus)
|
||||
.filter((call) => call.interceptable)
|
||||
.map((call, _, calls) => ({
|
||||
...call,
|
||||
childCallIds: calls.filter((c) => c.parentId === call.id).map((c) => c.id),
|
||||
isCollapsed: false,
|
||||
toggleCollapsed: () => {},
|
||||
}));
|
||||
|
Loading…
x
Reference in New Issue
Block a user