diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /cli/tests/unit/performance_test.ts | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'cli/tests/unit/performance_test.ts')
-rw-r--r-- | cli/tests/unit/performance_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/performance_test.ts b/cli/tests/unit/performance_test.ts index cf3c86517..3c98e4e40 100644 --- a/cli/tests/unit/performance_test.ts +++ b/cli/tests/unit/performance_test.ts @@ -47,11 +47,11 @@ unitTest(function performanceMeasure() { assertEquals(mark.startTime, measure.startTime); assert( measure.duration >= 100, - `duration below 100ms: ${measure.duration}` + `duration below 100ms: ${measure.duration}`, ); assert( measure.duration < 500, - `duration exceeds 500ms: ${measure.duration}` + `duration exceeds 500ms: ${measure.duration}`, ); const entries = performance.getEntries(); assert(entries[entries.length - 1] === measure); |