Skip to content

Commit

Permalink
fix start timestamp (#5048)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean1588 authored Jul 29, 2024
1 parent cf32176 commit 56f70dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run-browser-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function transformResults(res) {
results.tests += summary.tests;
results.passes += summary.passed;
results.failures += summary.failed;
results.start += summary.start;
results.start = summary.start;
results.end += summary.stop;
results.duration = summary.stop - summary.start + results.duration;
results.ghRunURL = getRunUrl();
Expand Down

0 comments on commit 56f70dc

Please sign in to comment.