@telefonica/acceptance-testing 3.0.0-beta5 → 3.0.0-beta6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docker-compose.yaml +1 -1
- package/jest-puppeteer-config.js +3 -2
- package/package.json +1 -1
package/docker-compose.yaml
CHANGED
package/jest-puppeteer-config.js
CHANGED
|
@@ -97,10 +97,12 @@ const getPuppeteerConfig = async () => {
|
|
|
97
97
|
// Launch chromium installed in docker in CI
|
|
98
98
|
...(isCi ? {executablePath: '/usr/bin/chromium'} : {}),
|
|
99
99
|
env: {
|
|
100
|
+
...process.env,
|
|
100
101
|
TZ: 'UTC',
|
|
101
102
|
LANG: 'es_ES',
|
|
102
103
|
LANGUAGE: 'es_ES',
|
|
103
104
|
},
|
|
105
|
+
dumpio: true,
|
|
104
106
|
// args must be the same as the ones defined in web-builder Dockerfile
|
|
105
107
|
args: [
|
|
106
108
|
'--lang=es_ES',
|
|
@@ -128,9 +130,8 @@ const getPuppeteerConfig = async () => {
|
|
|
128
130
|
'--hide-scrollbars',
|
|
129
131
|
'--no-sandbox',
|
|
130
132
|
'--font-render-hinting=none',
|
|
131
|
-
'--force-color-profile=sRGB',
|
|
132
133
|
'--disable-font-subpixel-positioning',
|
|
133
|
-
'--remote-debugging-port=9222',
|
|
134
|
+
// '--remote-debugging-port=9222', // https://github.com/puppeteer/puppeteer/issues/8546
|
|
134
135
|
'--remote-debugging-address=0.0.0.0',
|
|
135
136
|
'--ignore-certificate-errors',
|
|
136
137
|
],
|