Fix tests

This commit is contained in:
Gert Hengeveld 2022-07-01 11:36:10 +02:00
parent 96fb6c2c56
commit c36d10ce1a
2 changed files with 4 additions and 3 deletions

View File

@ -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 };
};

View File

@ -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 () => {