DEV: uses ember-cli recommended chrome flags (#7939)
This commit is contained in:
parent
c7b146cbdf
commit
460d431621
|
@ -38,7 +38,15 @@ if (QUNIT_RESULT) {
|
|||
async function runAllTests() {
|
||||
function launchChrome() {
|
||||
const options = {
|
||||
chromeFlags: ["--disable-gpu", "--headless", "--no-sandbox"]
|
||||
chromeFlags: [
|
||||
"--disable-gpu",
|
||||
"--headless",
|
||||
"--no-sandbox",
|
||||
"--disable-dev-shm-usage",
|
||||
"--disable-software-rasterizer",
|
||||
"--mute-audio",
|
||||
"--window-size=1440,900"
|
||||
]
|
||||
};
|
||||
|
||||
if (process.env.REMOTE_DEBUG) {
|
||||
|
|
Loading…
Reference in New Issue