@telefonica/acceptance-testing 3.0.0-beta6 → 3.0.0-beta8
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 +7 -24
- package/package.json +1 -1
package/docker-compose.yaml
CHANGED
package/jest-puppeteer-config.js
CHANGED
|
@@ -17,15 +17,8 @@ const poll = async (url) => {
|
|
|
17
17
|
throw Error(`Error fetching ${url}`);
|
|
18
18
|
};
|
|
19
19
|
|
|
20
|
-
/** @param args {Array<unknown>} */
|
|
21
|
-
const debug = (...args) => {
|
|
22
|
-
if (process.env.DEBUG) {
|
|
23
|
-
console.log('[acceptance-testing]', ...args);
|
|
24
|
-
}
|
|
25
|
-
};
|
|
26
|
-
|
|
27
20
|
/**
|
|
28
|
-
* CI => everything runs inside a docker
|
|
21
|
+
* CI => everything runs inside a docker. Executes the chromium installed in the docker.
|
|
29
22
|
* Local, headless => connects to a dockerized chromium at port 9223 (see docker-compose.yaml)
|
|
30
23
|
* Local, with UI => launches a local chromium installed by puppetteer
|
|
31
24
|
*
|
|
@@ -34,7 +27,8 @@ const debug = (...args) => {
|
|
|
34
27
|
const getPuppeteerConfig = async () => {
|
|
35
28
|
const isCi = process.argv.includes('--ci') || process.env.CI;
|
|
36
29
|
const isLocal = !isCi;
|
|
37
|
-
const isHeadless =
|
|
30
|
+
const isHeadless =
|
|
31
|
+
!!process.env.HEADLESS && process.env.HEADLESS !== 'false' && process.env.HEADLESS !== '0';
|
|
38
32
|
|
|
39
33
|
const rootDir = findRoot(process.cwd());
|
|
40
34
|
const packageJson = JSON.parse(fs.readFileSync(path.join(rootDir, 'package.json'), 'utf-8'));
|
|
@@ -72,12 +66,9 @@ const getPuppeteerConfig = async () => {
|
|
|
72
66
|
await poll(dockerChromiumUrl);
|
|
73
67
|
}
|
|
74
68
|
|
|
75
|
-
// const {webSocketDebuggerUrl} = await fetch(`${dockerChromiumUrl}/json/version`).then((r) => r.json());
|
|
76
|
-
|
|
77
69
|
connect = {
|
|
78
70
|
...baseConnectOrLaunchConfig,
|
|
79
71
|
browserURL: dockerChromiumUrl,
|
|
80
|
-
// browserWSEndpoint: webSocketDebuggerUrl,
|
|
81
72
|
};
|
|
82
73
|
}
|
|
83
74
|
|
|
@@ -94,16 +85,10 @@ const getPuppeteerConfig = async () => {
|
|
|
94
85
|
const config = {
|
|
95
86
|
launch: {
|
|
96
87
|
...baseConnectOrLaunchConfig,
|
|
97
|
-
//
|
|
88
|
+
// launch chromium installed in docker in CI
|
|
98
89
|
...(isCi ? {executablePath: '/usr/bin/chromium'} : {}),
|
|
99
|
-
env: {
|
|
100
|
-
...process.env,
|
|
101
|
-
TZ: 'UTC',
|
|
102
|
-
LANG: 'es_ES',
|
|
103
|
-
LANGUAGE: 'es_ES',
|
|
104
|
-
},
|
|
105
90
|
dumpio: true,
|
|
106
|
-
//
|
|
91
|
+
// arguments must be the same as the ones defined in web-builder Dockerfile. Except the remote-debugging settings
|
|
107
92
|
args: [
|
|
108
93
|
'--lang=es_ES',
|
|
109
94
|
'--disable-background-networking',
|
|
@@ -126,13 +111,12 @@ const getPuppeteerConfig = async () => {
|
|
|
126
111
|
'--enable-automation',
|
|
127
112
|
'--password-store=basic',
|
|
128
113
|
'--use-mock-keychain',
|
|
129
|
-
'--headless',
|
|
114
|
+
'--headless=new',
|
|
130
115
|
'--hide-scrollbars',
|
|
131
116
|
'--no-sandbox',
|
|
117
|
+
'--disabled-setupid-sandbox',
|
|
132
118
|
'--font-render-hinting=none',
|
|
133
119
|
'--disable-font-subpixel-positioning',
|
|
134
|
-
// '--remote-debugging-port=9222', // https://github.com/puppeteer/puppeteer/issues/8546
|
|
135
|
-
'--remote-debugging-address=0.0.0.0',
|
|
136
120
|
'--ignore-certificate-errors',
|
|
137
121
|
],
|
|
138
122
|
},
|
|
@@ -147,7 +131,6 @@ const getPuppeteerConfig = async () => {
|
|
|
147
131
|
: undefined,
|
|
148
132
|
};
|
|
149
133
|
|
|
150
|
-
debug('jest-puppeteer-config', config);
|
|
151
134
|
return config;
|
|
152
135
|
};
|
|
153
136
|
|