Skip to content

Commit

Permalink
Remove --disable-gpu flag when starting headless chrome
Browse files Browse the repository at this point in the history
The `--disable-gpu` flag is [no longer
necessary](https://bugs.chromium.org/p/chromium/issues/detail?id=737678) and, at
least in some cases, is [causing
issues](https://bugs.chromium.org/p/chromium/issues/detail?id=982977).

This flag has already been [removed from ember-cli's
blueprints](ember-cli/ember-cli#8774)

As you may already know, this project's test suite is run as part of [Ember
Data](https://github.com/emberjs/data)'s test suite to help catch regressions.
The flag has already been [removed from Ember Data's own testem
config](emberjs/data#6298) but Ember Data's complete
test suite cannot successfully run until all of our external integration
partners have also removed this flag.
  • Loading branch information
HeroicEric committed Aug 5, 2019
1 parent a92a5b1 commit 83a7225
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion testem.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ module.exports = {
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
'--disable-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
Expand Down

0 comments on commit 83a7225

Please sign in to comment.