DEV: Fix Chrome flags (#14914)

```
Error: illegal value for flag --max_semi_space_size
```
This commit is contained in:
Jarek Radosz 2021-11-13 12:37:07 +01:00 committed by GitHub
parent 904275a8f1
commit cb3cb96149
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"],