File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,7 @@ class TraceEngineResult {
20
20
* @return {Promise<LH.Artifacts.TraceEngineResult> }
21
21
*/
22
22
static async runTraceEngine ( traceEvents ) {
23
- const traceHandlers = { ...TraceEngine . TraceHandlers } ;
24
-
25
- // @ts -expect-error Temporarily disable this handler
26
- // It's not currently used anywhere in trace engine insights or Lighthouse.
27
- // TODO: Re-enable this when its memory usage is improved in the trace engine
28
- // https://github.com/GoogleChrome/lighthouse/issues/16111
29
- delete traceHandlers . Invalidations ;
30
-
31
- const processor = new TraceEngine . TraceProcessor ( traceHandlers ) ;
23
+ const processor = new TraceEngine . TraceProcessor ( TraceEngine . TraceHandlers ) ;
32
24
33
25
// eslint-disable-next-line max-len
34
26
await processor . parse ( /** @type {import('@paulirish/trace_engine').Types.Events.Event[] } */ (
You can’t perform that action at this time.
0 commit comments