Build: Improve waiting detection on E2E to fix flake

This commit is contained in:
Yann Braga 2024-12-13 13:12:20 +01:00
parent 8690ee9063
commit 632402769c

View File

@ -112,6 +112,10 @@ export class SbPage {
const storyLoadingPage = root.locator('.sb-preparing-story'); const storyLoadingPage = root.locator('.sb-preparing-story');
await docsLoadingPage.waitFor({ state: 'hidden' }); await docsLoadingPage.waitFor({ state: 'hidden' });
await storyLoadingPage.waitFor({ state: 'hidden' }); await storyLoadingPage.waitFor({ state: 'hidden' });
await this.page.waitForFunction(() => {
const storybookRoot = document.querySelector('#storybook-root');
return storybookRoot && storybookRoot.children.length > 0;
});
} }
previewIframe() { previewIframe() {