mirror of
https://github.com/discourse/discourse.git
synced 2025-08-20 18:52:44 +08:00
DEV: uses ember-cli recommended chrome flags (#7939)
This commit is contained in:
parent
c7b146cbdf
commit
460d431621
1 changed files with 9 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue