Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core(runner): independent gather and audit functions #13569

Merged
merged 22 commits into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
sample
  • Loading branch information
adamraine committed Jan 18, 2022
commit 1f22fa670f15cf940494d72aba1d4a71accda99f
8 changes: 7 additions & 1 deletion lighthouse-core/test/results/sample_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -6870,7 +6870,13 @@
},
{
"startTime": 0,
"name": "lh:runner:run",
"name": "lh:runner:gather",
"duration": 100,
"entryType": "measure"
},
{
"startTime": 0,
"name": "lh:runner:audit",
"duration": 100,
"entryType": "measure"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Loading…
Create config
Requiring gatherers
Requiring audits
Runner setup
Gather phase
Connecting to browser
Resetting state with about:blank
Navigating to about:blank
Expand Down Expand Up @@ -146,6 +146,7 @@ Running afterPass methods
Gathering: ServiceWorker
Disconnecting from browser...
Cleaning origin data
Audit phase
Analyzing and running audits...
Auditing: Uses HTTPS
Auditing: Registers a service worker that controls page and `start_url`
Expand Down