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