Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lighthouse-core/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,10 @@ class Runner {
// resolution.
.map(entry => {
return /** @type {PerformanceEntry} */ ({
...entry,
duration: parseFloat(entry.duration.toFixed(2)),
startTime: parseFloat(entry.startTime.toFixed(2)),
name: entry.name,
duration: parseFloat(entry.duration.toFixed(2)),
entryType: entry.entryType,
});
});
const runnerEntry = timingEntries.find(e => e.name === 'lh:runner:run');
Expand Down