We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01df323 commit f355c0bCopy full SHA for f355c0b
tests/e2e/tests/startupCalls.js
@@ -20,7 +20,7 @@ module.exports = {
20
};
21
22
beforeAll(async () => {
23
- console.log("Start:", new Date().toUTCString(), 120000);
+ console.log("Start:", new Date().toUTCString());
24
25
page.on('response', response => {
26
const url = response.url();
@@ -39,7 +39,7 @@ module.exports = {
39
} else if (url.includes('catalog/services/-/latest')) {
40
responses.services = response.json();
41
}
42
- });
+ }, 120000);
43
44
await page.goto(url);
45
0 commit comments