Skip to content

Commit

Permalink
remove 2nd duration (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan-Kouznetsov committed Aug 18, 2020
1 parent 721a218 commit 0357d6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
0.6.5 Include request duration only once in reports
0.6.4 Use ms instead of ns, add colors
0.6.3 Check for empty rule sets
0.6.2 Fix validation of is a date
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aartl",
"version": "0.6.4",
"version": "0.6.5",
"description": "Agnostic API Reliability Testing Language (AARTL) is platform-agnostic declarative domain-specific language for testing HTTP servers using the server’s API",
"main": "aartl.ts",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions src/reportBuilder/reportBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ export const requestLogToHtml = (log: IRequestLog): string => {
<p>Received
<br/>Headers: ${JSON.stringify(rec.headers)}
<br/>${rec.json ? escapeHtmlChars(JSON.stringify(rec.json)) : escapeHtmlChars(rec.string)}
<br/>Status: ${rec.status}
<br/>Duration: ${formatDuration(log.duration)} ms
<br/>Status: ${rec.status}
`;
};

Expand Down

0 comments on commit 0357d6f

Please sign in to comment.