From 332f143160844514a870e49b391095600ed288c7 Mon Sep 17 00:00:00 2001 From: Nancy Li Date: Wed, 8 Apr 2026 12:46:16 -0700 Subject: [PATCH] [XProf: trace viewer] Enable trace viewer v2 load test in presubmit This CL removes 'manual' and 'notap' tags from the trace viewer v2 load test to enable it in presubmit. It also adds dynamic tagging based on CL number to distinguish presubmit runs in Perfgate. PiperOrigin-RevId: 896648462 --- frontend/app/components/trace_viewer_v2/main.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/app/components/trace_viewer_v2/main.ts b/frontend/app/components/trace_viewer_v2/main.ts index 77cf47b0..ac7fd3e0 100644 --- a/frontend/app/components/trace_viewer_v2/main.ts +++ b/frontend/app/components/trace_viewer_v2/main.ts @@ -917,3 +917,7 @@ export async function traceViewerV2Main( return traceviewerModule; } + +// Expose to window for integration tests. +// tslint:disable-next-line:no-any +(window as any)['traceViewerV2Main'] = traceViewerV2Main;