We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f371af commit ce92886Copy full SHA for ce92886
1 file changed
src/tools/performance.ts
@@ -6,6 +6,7 @@
6
7
import zlib from 'node:zlib';
8
9
+import {logger} from '../logger.js';
10
import {zod, DevTools} from '../third_party/index.js';
11
import type {Page} from '../third_party/index.js';
12
import type {InsightName, TraceResult} from '../trace-processing/parse.js';
@@ -219,7 +220,7 @@ async function stopTracingAndAppendOutput(
219
220
async function populateCruxData(result: TraceResult): Promise<void> {
221
logger('populateCruxData called');
222
const cruxManager = DevTools.CrUXManager.instance();
- // go/jtfbx
223
+ // go/jtfbx. Yes, we're aware this API key is public. ;)
224
cruxManager.setEndpointForTesting(
225
'https://chromeuxreport.googleapis.com/v1/records:queryRecord?key=AIzaSyBn5gimNjhiEyA_euicSKko6IlD3HdgUfk',
226
);
0 commit comments