summaryrefslogtreecommitdiff
path: root/cli/tests/unit/performance_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/performance_test.ts')
-rw-r--r--cli/tests/unit/performance_test.ts4
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);