Update extract to wait for init

This commit is contained in:
Tom Coleman 2021-09-06 12:55:58 +10:00
parent 64724a21e1
commit 816f3319a6

View File

@ -11,6 +11,11 @@ const read = async (url: string) => {
await page.goto(url);
// for v7 store. This may not be necessary ultimately as this store relies on a static stories.json
await page.waitForFunction(
'window.__STORYBOOK_STORY_STORE__ && window.__STORYBOOK_STORY_STORE__.cacheAllCSFFiles && window.__STORYBOOK_STORY_STORE__.cacheAllCSFFiles()'
);
await page.waitForFunction(
'window.__STORYBOOK_STORY_STORE__ && window.__STORYBOOK_STORY_STORE__.extract && window.__STORYBOOK_STORY_STORE__.extract()'
);