Skip to content

Commit 0ce84c0

Browse files
authored
core(fr): always run NetworkUserAgent gatherer (#14392)
1 parent d43485b commit 0ce84c0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

cli/test/cli/__snapshots__/index-test.js.snap

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Object {
1111
"gatherer": "trace",
1212
"id": "Trace",
1313
},
14+
Object {
15+
"gatherer": "network-user-agent",
16+
"id": "NetworkUserAgent",
17+
},
1418
Object {
1519
"gatherer": "stacks",
1620
"id": "Stacks",
@@ -140,6 +144,7 @@ Object {
140144
"artifacts": Array [
141145
"DevtoolsLog",
142146
"Trace",
147+
"NetworkUserAgent",
143148
"Stacks",
144149
"devtoolsLogs",
145150
"traces",

core/fraggle-rock/config/filters.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ const filterResistantAuditIds = ['full-page-screenshot'];
3131

3232
// Some artifacts are used by the report for additional information.
3333
// Always run these artifacts even if audits do not request them.
34-
const filterResistantArtifactIds = ['HostUserAgent', 'HostFormFactor', 'Stacks', 'GatherContext'];
34+
// These are similar to base artifacts but they cannot be run in all 3 modes.
35+
const filterResistantArtifactIds = ['Stacks', 'NetworkUserAgent'];
3536

3637
/**
3738
* Returns the set of audit IDs used in the list of categories.

0 commit comments

Comments
 (0)