mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Better error message
This commit is contained in:
parent
a9b75cfc20
commit
96fb6c2c56
@ -116,7 +116,8 @@ export const mockChannel = {
|
||||
|
||||
export const waitForEvents = (
|
||||
events: string[],
|
||||
predicate: (...args: any[]) => boolean = () => true
|
||||
predicate: (...args: any[]) => boolean = () => true,
|
||||
debugLabel?: string
|
||||
) => {
|
||||
// We've already emitted a render event. NOTE if you want to test a second call,
|
||||
// ensure you call `mockChannel.emit.mockClear()` before `waitFor...`
|
||||
@ -137,7 +138,9 @@ export const waitForEvents = (
|
||||
events.forEach((event) => mockChannel.on(event, listener));
|
||||
|
||||
// Don't wait too long
|
||||
waitForQuiescence().then(() => reject(new Error('Event was not emitted in time')));
|
||||
waitForQuiescence().then(() =>
|
||||
reject(new Error(`Event was not emitted in time: ${debugLabel || events}`))
|
||||
);
|
||||
});
|
||||
};
|
||||
|
||||
@ -152,8 +155,10 @@ export const waitForRender = () =>
|
||||
STORY_MISSING,
|
||||
]);
|
||||
|
||||
export const waitForRenderPhase = (phase: RenderPhase) =>
|
||||
waitForEvents([STORY_RENDER_PHASE_CHANGED], ({ newPhase }) => newPhase === phase);
|
||||
export const waitForRenderPhase = (phase: RenderPhase) => {
|
||||
const label = `${STORY_RENDER_PHASE_CHANGED} to ${phase}`;
|
||||
return waitForEvents([STORY_RENDER_PHASE_CHANGED], ({ newPhase }) => newPhase === phase, label);
|
||||
};
|
||||
|
||||
// A little trick to ensure that we always call the real `setTimeout` even when timers are mocked
|
||||
const realSetTimeout = setTimeout;
|
||||
|
Loading…
x
Reference in New Issue
Block a user