Skip to content

Commit ce6061b

Browse files
authored
core: remove ResponseCompression artifact (#16755)
1 parent de1e553 commit ce6061b

File tree

6 files changed

+0
-355
lines changed

6 files changed

+0
-355
lines changed

core/config/default-config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ const defaultConfig = {
126126
{id: 'MainDocumentContent', gatherer: 'main-document-content'},
127127
{id: 'MetaElements', gatherer: 'meta-elements'},
128128
{id: 'NetworkUserAgent', gatherer: 'network-user-agent'},
129-
{id: 'ResponseCompression', gatherer: 'dobetterweb/response-compression'},
130129
{id: 'RobotsTxt', gatherer: 'seo/robots-txt'},
131130
{id: 'Scripts', gatherer: 'scripts'},
132131
{id: 'SourceMaps', gatherer: 'source-maps'},

core/gather/gatherers/dobetterweb/response-compression.js

Lines changed: 0 additions & 136 deletions
This file was deleted.

core/test/gather/gatherers/dobetterweb/response-compression-test.js

Lines changed: 0 additions & 214 deletions
This file was deleted.

core/test/scripts/run-mocha-tests.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ const testsToIsolate = new Set([
7777
'core/test/gather/snapshot-runner-test.js',
7878
'core/test/gather/timespan-runner-test.js',
7979
'core/test/user-flow-test.js',
80-
'core/test/gather/gatherers/dobetterweb/response-compression-test.js',
8180
'core/test/runner-test.js',
8281

8382
// These tend to timeout in puppeteer when run in parallel with other tests.

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
"core/test/gather/gatherers/accessibility-test.js",
4747
"core/test/gather/gatherers/console-messages-test.js",
4848
"core/test/gather/gatherers/devtools-log-test.js",
49-
"core/test/gather/gatherers/dobetterweb/response-compression-test.js",
5049
"core/test/gather/gatherers/full-page-screenshot-test.js",
5150
"core/test/gather/gatherers/global-listeners-test.js",
5251
"core/test/gather/gatherers/html-without-javascript-test.js",

types/artifacts.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ export interface GathererArtifacts extends PublicGathererArtifacts {
127127
JsUsage: Record<string, Omit<Crdp.Profiler.ScriptCoverage, 'url'>>;
128128
/** The user agent string that Lighthouse used to load the page. Set to the empty string if unknown. */
129129
NetworkUserAgent: string;
130-
/** Size info of all network records sent without compression and their size after gzipping. */
131-
ResponseCompression: {requestId: string, url: string, mimeType: string, transferSize: number, resourceSize: number, gzipSize?: number}[];
132130
/** Information on fetching and the content of the /robots.txt file. */
133131
RobotsTxt: {status: number|null, content: string|null, errorMessage?: string};
134132
/** Source maps of scripts executed in the page. */

0 commit comments

Comments
 (0)