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 4dd713f commit 76f3f90Copy full SHA for 76f3f90
core/js/run.js
@@ -634,6 +634,10 @@ function pollInner(data)
634
{
635
var currentTime = performance.now();
636
totalTimeOfAllTests.push(Math.round((currentTime - _data["timeStart"][i])/1000));
637
+ if(totalTimeOfAllTests.length > 100)
638
+ {
639
+ totalTimeOfAllTests.shift();
640
+ }
641
if(document.getElementById(_data["id"][i]))
642
643
//update percent
settings/changelog.html
@@ -12,6 +12,9 @@ <h2>Changelog</h2>
12
<li>
13
Added refresh next to iframe in tests to refresh if video 404 on first load
14
</li>
15
+ <li>
16
+ Reduced size of array for generating time estimates. (only from last 100 tests now)
17
+ </li>
18
</ul>
19
20
0 commit comments