2021-10-03 03:16:55 -07:00
|
|
|
module.exports = {
|
|
|
|
"launch": {
|
2021-11-15 19:35:04 -08:00
|
|
|
"dumpio": true,
|
|
|
|
"slowMo": 500,
|
2021-10-05 05:27:43 -07:00
|
|
|
"headless": process.env.HEADLESS_TEST || false,
|
2021-10-05 02:39:44 -07:00
|
|
|
"userDataDir": "./data/test-chrome-profile",
|
2021-11-04 08:19:31 -07:00
|
|
|
args: [
|
|
|
|
"--disable-setuid-sandbox",
|
|
|
|
"--disable-gpu",
|
2021-11-15 19:35:04 -08: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 08:19:31 -07:00
|
|
|
],
|
2021-10-03 03:16:55 -07:00
|
|
|
}
|
|
|
|
};
|