Skip to content

Commit 05ce8bf

Browse files
fix bad merge
1 parent a8a4059 commit 05ce8bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/shared/test-runner.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ export class TestRunner {
5353
performance.mark(syncStartLabel);
5454
const syncStartTime = performance.now();
5555
await this._runSyncStep(this.test, this.page);
56-
const syncEndTime = performance.now();
57-
performance.mark(syncEndLabel);
56+
const mark = performance.mark(syncEndLabel);
57+
const syncEndTime = mark.startTime;
5858

5959
syncTime = syncEndTime - syncStartTime;
6060
asyncStartTime = syncEndTime;

0 commit comments

Comments
 (0)