Skip to content
Snippets Groups Projects
Commit a4ab8e4c authored by Konstantin Schulz's avatar Konstantin Schulz
Browse files

increased timeout value for connection to browser in CI

parent ede1fdec
No related branches found
No related tags found
No related merge requests found
Pipeline #10747 failed
......@@ -4,7 +4,9 @@ before_script:
- which npm
- npm --version
- npm install
- export CHROME_BIN=chromium-browser
- npm i -g @angular/cli
- which ng
- ng version
stages:
- test
- deploy
......@@ -18,3 +20,5 @@ coverage:
- node
- npm
- angular
variables:
CHROME_BIN: chromium-browser
{
"name": "mc_frontend",
"version": "1.6.0",
"version": "1.6.1",
"author": "Ionic Framework",
"homepage": "https://ionicframework.com/",
"scripts": {
......
......@@ -29,6 +29,14 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome', 'ChromeHeadless'],
browserDisconnectTimeout: 10000,
browserDisconnectTolerance: 3,
browserNoActivityTimeout: 60000,
flags: [
'--disable-web-security',
'--disable-gpu',
'--no-sandbox',
],
singleRun: false
});
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment