Skip to content
Snippets Groups Projects
Commit 4451a322 authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

Merge branch '854-taiko-tests-sometime-stall-without-any-visible-progress' into 'master'

Resolve "Taiko tests sometime stall without any visible progress"

Closes #854

See merge request openappstack/openappstack!460
parents 3d7a967c eb3ce223
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,20 @@ const assert = require('assert');
setConfig( { observeTime: 0, navigationTimeout: globalTimeout });
console.log('Executing these tests: ' + taikoTests)
await openBrowser()
await openBrowser({
// Optimize chrome instances for docker an parallel runs, see:
// https://docs.taiko.dev/taiko_in_docker/
// https://docs.taiko.dev/frequently_asked_questions/#how-can-i-optimize-chrome-instances-for-parallel-runs%3F
args: [
"--disable-gpu",
"--disable-dev-shm-usage",
"--disable-setuid-sandbox",
"--no-first-run",
"--no-sandbox",
"--no-zygote",
"--start-maximized"
]
});
// Nextcloud and Onlyoffice
if (taikoTests.includes('nextcloud') || taikoTests === 'all') {
......
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