time is in test.duration, not test.speed

saucelabs-parallel
webzwo0i 2020-07-10 21:50:43 +02:00
parent a974d45066
commit af3ab060e1
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ $(function(){
stats.tests = stats.tests || 0;
stats.tests++;
if ('passed' == test.state) {
append("->","[green]PASSED[clear] :", test.title," ",test.speed,"ms");
append("->","[green]PASSED[clear] :", test.title," ",test.duration,"ms");
} else if (test.pending) {
append("->","[yellow]PENDING[clear]:", test.title);
} else {