mirror of
https://github.com/discourse/discourse.git
synced 2025-03-09 14:34:35 +00:00
FIX: Use the no-sandbox flag when running Ember CLI tests. (#12951)
Without this flag we get "Error: Browser exited unexpectedly" when trying to run tests.
This commit is contained in:
parent
ac1d344368
commit
c8f34db648
@ -6,7 +6,7 @@ module.exports = {
|
||||
browser_args: {
|
||||
Chrome: [
|
||||
// --no-sandbox is needed when running Chrome inside a container
|
||||
process.env.CI ? "--no-sandbox" : null,
|
||||
process.env.CI || process.env.EMBER_CLI ? "--no-sandbox" : null,
|
||||
"--headless",
|
||||
"--disable-dev-shm-usage",
|
||||
"--disable-software-rasterizer",
|
||||
|
Loading…
x
Reference in New Issue
Block a user