mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
clarify that puppeteer.connect is async
This commit is contained in:
parent
6029c9f69a
commit
880d335b06
@ -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 }),
|
||||
});
|
||||
})();
|
||||
```
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user