mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:51:17 +08:00
Build: Improve waiting detection on E2E to fix flake
This commit is contained in:
parent
8690ee9063
commit
632402769c
@ -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() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user