clarify that puppeteer.connect is async

This commit is contained in:
Andrew Moss 2018-11-05 14:52:28 +00:00
parent 6029c9f69a
commit 880d335b06

View File

@ -147,12 +147,14 @@ import initStoryshots from '@storybook/addon-storyshots';
import { imageSnapshot } from '@storybook/addon-storyshots-puppeteer';
import puppeteer from 'puppeteer';
const customBrowser = puppeteer.connect('ws://yourUrl');
(async function() {
const customBrowser = await puppeteer.connect('ws://yourUrl');
initStoryshots({
suite: 'Image storyshots',
test: imageSnapshot({ storybookUrl: 'http://localhost:6006', customBrowser }),
});
initStoryshots({
suite: 'Image storyshots',
test: imageSnapshot({ storybookUrl: 'http://localhost:6006', customBrowser }),
});
})();
```