mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +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');
|
||||
await docsLoadingPage.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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user