mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
feature: add config to supply executable chrome path to puppeteer
This commit is contained in:
parent
323c523d18
commit
a6a38a6540
@ -11,6 +11,7 @@ const noop = () => {};
|
||||
|
||||
const defaultConfig = {
|
||||
storybookUrl: 'http://localhost:6006',
|
||||
chromeExecutablePath: undefined,
|
||||
getMatchOptions: noop,
|
||||
getScreenshotOptions: defaultScreenshotOptions,
|
||||
beforeScreenshot: noop,
|
||||
@ -20,6 +21,7 @@ const defaultConfig = {
|
||||
export const imageSnapshot = (customConfig = {}) => {
|
||||
const {
|
||||
storybookUrl,
|
||||
chromeExecutablePath,
|
||||
getMatchOptions,
|
||||
getScreenshotOptions,
|
||||
beforeScreenshot,
|
||||
@ -70,7 +72,10 @@ export const imageSnapshot = (customConfig = {}) => {
|
||||
testFn.beforeAll = () =>
|
||||
puppeteer
|
||||
// add some options "no-sandbox" to make it work properly on some Linux systems as proposed here: https://github.com/Googlechrome/puppeteer/issues/290#issuecomment-322851507
|
||||
.launch({ args: ['--no-sandbox ', '--disable-setuid-sandbox'] })
|
||||
.launch({
|
||||
args: ['--no-sandbox ', '--disable-setuid-sandbox'],
|
||||
executablePath: chromeExecutablePath,
|
||||
})
|
||||
.then(b => {
|
||||
browser = b;
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user