Skip to content

Commit

Permalink
fix: correct logic for startTime in trx-generator.ts
Browse files Browse the repository at this point in the history
Fixes #527 

Co-authored-by: Scott Sundahl <scott.sundahl@thetradedesk.com>
  • Loading branch information
ssundahl and ssundahlTTD authored Jun 14, 2022
1 parent 6e798c6 commit 95353ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trx-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ const renderTestSuiteResult = (
.att(
"startTime",
new Date(
testSuiteResult.perfStats.start + runningDuration,
testSuiteResult.perfStats.start,
).toISOString(),
)
.att(
Expand Down

0 comments on commit 95353ae

Please sign in to comment.