DEV: Use double quotes for js-flags (#14693)
Single quotes seem to be raising parse errors in some CI situations. Switching to double quotes seems to fix the problem.
This commit is contained in:
parent
c7768b6d16
commit
50f4f43825
|
@ -41,7 +41,7 @@ module.exports = {
|
|||
"--remote-debugging-port=4201",
|
||||
"--window-size=1440,900",
|
||||
"--enable-precise-memory-info",
|
||||
"--js-flags='--max_old_space_size=512 --max_semi_space_size=512'",
|
||||
'--js-flags="--max_old_space_size=512 --max_semi_space_size=512"',
|
||||
].filter(Boolean),
|
||||
Firefox: ["-headless", "--width=1440", "--height=900"],
|
||||
"Headless Firefox": ["--width=1440", "--height=900"],
|
||||
|
|
Loading…
Reference in New Issue