Skip to content

Commit

Permalink
fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
flashdesignory committed Jan 7, 2025
1 parent a8a4059 commit 05ce8bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/shared/test-runner.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export class TestRunner {
performance.mark(syncStartLabel);
const syncStartTime = performance.now();
await this._runSyncStep(this.test, this.page);
const syncEndTime = performance.now();
performance.mark(syncEndLabel);
const mark = performance.mark(syncEndLabel);
const syncEndTime = mark.startTime;

syncTime = syncEndTime - syncStartTime;
asyncStartTime = syncEndTime;
Expand Down

0 comments on commit 05ce8bf

Please sign in to comment.