2021-10-03 06:16:55 -04:00
|
|
|
module.exports = {
|
|
|
|
"launch": {
|
2021-11-15 22:35:04 -05:00
|
|
|
"dumpio": true,
|
|
|
|
"slowMo": 500,
|
2021-10-05 08:27:43 -04:00
|
|
|
"headless": process.env.HEADLESS_TEST || false,
|
2021-10-05 05:39:44 -04:00
|
|
|
"userDataDir": "./data/test-chrome-profile",
|
2021-11-04 11:19:31 -04:00
|
|
|
args: [
|
|
|
|
"--disable-setuid-sandbox",
|
|
|
|
"--disable-gpu",
|
2021-11-15 22:35:04 -05:00
|
|
|
"--disable-dev-shm-usage",
|
|
|
|
"--no-default-browser-check",
|
|
|
|
"--no-experiments",
|
|
|
|
"--no-first-run",
|
|
|
|
"--no-pings",
|
|
|
|
"--no-sandbox",
|
|
|
|
"--no-zygote",
|
|
|
|
"--single-process",
|
2021-11-04 11:19:31 -04:00
|
|
|
],
|
2021-10-03 06:16:55 -04:00
|
|
|
}
|
|
|
|
};
|