Won't Do
Details
Details
Assignee
Unassigned
UnassignedReporter
Alex Mozolev
Alex MozolevLabels
Priority
Story Points
0
Development Team
Folijet
Parent
Release
Not Scheduled
TestRail: Cases
Open TestRail: Cases
TestRail: Runs
Open TestRail: Runs
Created February 26, 2021 at 1:37 PM
Updated July 26, 2023 at 5:57 AM
Resolved July 25, 2023 at 11:44 AM
There are random problems with the tests on CI.
This makes merging the PRs to take significant time and amount of attempts
Sometimes tests fail by Karma timeout, like in this pass
We can see the messages about it in the console
By the way, in this case the PR status in Jenkins shows tests as passed
Another times the fail cause is Mocha timeout like here
I somehow fixed the issue in this PR by arranging crazy big timeouts
module.exports = config => config.set({ client: { captureConsole: false, mocha: { timeout: 100000 }, }, browserDisconnectTimeout: 100000, browserDisconnectTolerance: 10, browserNoActivityTimeout: 100000, flags: [ '--disable-gpu', '--no-sandbox' ], });
This should be changed to some sane values.