You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running yarn test on local environment (Arch Linux) I ran into the issues described in: puppeteer/puppeteer#290. Although, just adding the flags as described in the referred issue wasn't enough.
I.e. I renamed ChromeHeadless browser to puppeteer and added the flags --no-sandbox and --disable-setuid-sandbox on the customLauncher, since the flags wasn't respected when trying to run the browser. This leads me to believe the flag present today (--stack-trace-limit 50000) isn't respected as well.
Is this something we need to address? We should maybe communicate how to do the work-around to add the --no-sandbox and --disable-setuid-sandbox flags in case more users run into this issue as well.
The text was updated successfully, but these errors were encountered:
patrikmolsson
changed the title
Test: Local test environment doesn
Test: Cannot run local tests without modifying test config
Oct 21, 2017
When running
yarn test
on local environment (Arch Linux) I ran into the issues described in: puppeteer/puppeteer#290. Although, just adding the flags as described in the referred issue wasn't enough.I also had to rename the browser:
Semantic-UI-React/karma.conf.babel.js
Line 32 in 4f29636
Semantic-UI-React/karma.conf.babel.js
Line 47 in 4f29636
I.e. I renamed
ChromeHeadless
browser topuppeteer
and added the flags--no-sandbox
and--disable-setuid-sandbox
on the customLauncher, since the flags wasn't respected when trying to run the browser. This leads me to believe the flag present today (--stack-trace-limit 50000
) isn't respected as well.Is this something we need to address? We should maybe communicate how to do the work-around to add the
--no-sandbox
and--disable-setuid-sandbox
flags in case more users run into this issue as well.The text was updated successfully, but these errors were encountered: