mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Fix tests
This commit is contained in:
parent
96fb6c2c56
commit
c36d10ce1a
@ -85,7 +85,7 @@ jest.mock('react-dom');
|
||||
jest.mock('./WebView');
|
||||
|
||||
const serializeError = (error: Error) => {
|
||||
const { name, message, stack } = error;
|
||||
const { name = 'Error', message = String(error), stack } = error;
|
||||
return { name, message, stack };
|
||||
};
|
||||
|
||||
|
@ -236,9 +236,10 @@ export class StoryRender<TFramework extends AnyFramework> implements Render<TFra
|
||||
this.teardownRender = teardown || (() => {});
|
||||
});
|
||||
this.notYetRendered = false;
|
||||
if (abortSignal.aborted || this.phase !== 'rendering') return;
|
||||
if (abortSignal.aborted) return;
|
||||
|
||||
if (forceRemount && playFunction) {
|
||||
// The phase should be 'rendering' but it might be set to 'aborted' by another render cycle
|
||||
if (forceRemount && playFunction && this.phase !== 'errored') {
|
||||
this.disableKeyListeners = true;
|
||||
try {
|
||||
await this.runPhase(abortSignal, 'playing', async () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user