Skip to content

Commit

Permalink
fix: time in ms for skip test (microsoft#30078)
Browse files Browse the repository at this point in the history
  • Loading branch information
shriphad-rao authored Mar 25, 2024
1 parent 95d649b commit 82804cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/html-reporter/src/uiUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function msToString(ms: number): string {
return '-';

if (ms === 0)
return '0';
return '0ms';

if (ms < 1000)
return ms.toFixed(0) + 'ms';
Expand Down

0 comments on commit 82804cc

Please sign in to comment.