Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark committed Apr 1, 2024
1 parent 406b4dd commit be73c6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/computed/page-dependency-graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ class PageDependencyGraph {
// Calculates the URL artifact from the processed trace and DT log.
const URL = data.URL || await DocumentUrls.request(data, context);

const traceEvents = processedTrace.mainThreadEvents;
const mainThreadEvents = processedTrace.mainThreadEvents;

Check warning on line 33 in core/computed/page-dependency-graph.js

View check run for this annotation

Codecov / codecov/patch

core/computed/page-dependency-graph.js#L33

Added line #L33 was not covered by tests
const lanternRequests = networkRecords.map(NetworkRequest.asLanternNetworkRequest);
return LanternPageDependencyGraph.createGraph(traceEvents, lanternRequests, URL);
return LanternPageDependencyGraph.createGraph(mainThreadEvents, lanternRequests, URL);

Check warning on line 35 in core/computed/page-dependency-graph.js

View check run for this annotation

Codecov / codecov/patch

core/computed/page-dependency-graph.js#L35

Added line #L35 was not covered by tests
}
}

Expand Down

0 comments on commit be73c6e

Please sign in to comment.