Add story for Panel with caught exception

This commit is contained in:
Gert Hengeveld 2022-06-22 17:26:35 +02:00
parent 479196228a
commit 7641f8374d
2 changed files with 16 additions and 1 deletions

View File

@ -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')"),
},
};

View File

@ -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: () => {},
}));