Skip to content

fix: restore E2E coverage source mapping - #14950

Merged
christian-byrne merged 5 commits into
mainfrom
fix/e2e-coverage-sourcemap-url
Aug 9, 2026
Merged

fix: restore E2E coverage source mapping#14950
christian-byrne merged 5 commits into
mainfrom
fix/e2e-coverage-sourcemap-url

Conversation

@christian-byrne

@christian-byrne christian-byrne commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

Summary

E2E coverage has been reported as either missing or 100% since build.sourcemap: 'hidden' landed; this restores the source mapping and adds guards so a degenerate tracefile fails loudly instead of being announced as a milestone.

Changes

  • What:
    • The E2E build sets COLLECT_COVERAGE=true, which re-injects the //# sourceMappingURL= comment. Everything that ships to users keeps 'hidden', so the .js.map 404 noise FE-1405 removed stays gone. GENERATE_SOURCEMAP can't carry this — Comfy-Org/cloud already sets it true for the staging and prod builds.
    • CI: E2E Coverage asserts the merged tracefile still has source-mapped files before stripping bundle paths, with an error that names the cause.
    • coverage-slack-notify.ts counts only src//packages/ files and treats an implausibly small file set as no data.

Review Focus

Root cause: monocart-coverage-reports resolves source maps only from the //# sourceMappingURL= comment in the served bundle (lib/converter/collect-source-maps.js). #14209 switched build.sourcemap to 'hidden', which emits the .map files but strips that comment, so every V8 coverage entry stayed at its served path (localhost-8188/assets/*.js).

The merge job strips those paths, which left two failure modes:

  • Nothing survives → lcov: ERROR: no valid records found → job fails → no e2e-coverage artifact → the Slack report silently drops its E2E line (what you see after feat: image compositor node with PSD-style layer editor #14809).
  • One third-party script survives (js.stripe.com/dahlia/stripe.js, fully covered) → E2E reported as 100% (e2e-coverage artifacts drop from ~350 KB to ~28 KB). That is the source of the "GOAL REACHED: E2E test coverage hit 100%" messages.

Replaying the current script against the real 28 KB artifact reproduces the Slack message exactly (E2E: 68.5% → 100.0% (+31.5%)); with this change the same input produces no post.

The only source-mapped E2E artifacts after 2026-07-30 came from PR branches not yet rebased past #14209 — hence the decay from ~170/day to zero rather than a clean cutover.

Note the stored e2e-coverage-baseline currently holds the bogus 100%, so the first run after this merges will look like a large regression and post nothing; the baseline self-heals on that same run.

`build.sourcemap: 'hidden'` (#14209) stopped emitting the
`//# sourceMappingURL=` comment into the bundles. monocart discovers source
maps only through that comment, so every E2E V8 coverage entry stayed at its
served bundle path (`localhost-8188/assets/*.js`) instead of mapping back to
`src/**`. The coverage merge job then stripped all of them and either failed
outright (no `e2e-coverage` artifact, so the Slack report dropped its E2E line)
or was left with a lone third-party script — `js.stripe.com/dahlia/stripe.js`,
fully covered — and reported E2E coverage as 100%.

- Re-inject the comment for the CI E2E build only, via EXPOSE_SOURCEMAP_URL.
  Shipped builds keep 'hidden', so the .js.map 404 noise FE-1405 fixed stays gone.
- Fail the merge job loudly when the tracefile has no source-mapped files,
  instead of surfacing it as an opaque `lcov: no valid records found`.
- Count only `src/`/`packages/` files in the Slack report and treat an
  implausibly small file set as no data, so a degenerate tracefile can't be
  announced as a coverage milestone.
@christian-byrne
christian-byrne requested a review from a team August 9, 2026 00:47
@dosubot dosubot Bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Aug 9, 2026
@github-actions

github-actions Bot commented Aug 9, 2026

Copy link
Copy Markdown

🎭 Playwright: ✅ 1792 passed, 0 failed · 2 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1773 / ❌ 0 / ⚠️ 1 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 16 / ❌ 0 / ⚠️ 1 / ⏭️ 0)
  • New-test walkthrough (chromium, recorded video): View Report

📦 Bundle: 8.69 MB gzip ⚪ 0 B

Details

Summary

  • Raw size: 36.6 MB baseline 36.6 MB — ⚪ 0 B
  • Gzip: 8.69 MB baseline 8.69 MB — ⚪ 0 B
  • Brotli: 6.06 MB baseline 6.06 MB — ⚪ 0 B
  • Bundles: 437 current • 437 baseline

Category Glance
Vendor & Third-Party ⚪ 0 B (16.3 MB) · Other ⚪ 0 B (14 MB) · Data & Services ⚪ 0 B (3.5 MB) · Graph Workspace ⚪ 0 B (1.36 MB) · Panels & Settings ⚪ 0 B (570 kB) · Utilities & Hooks ⚪ 0 B (550 kB) · + 5 more

App Entry Points — 3.67 kB (baseline 3.67 kB) • ⚪ 0 B

Main entry bundles and manifests

Status: 1 unchanged

Graph Workspace — 1.36 MB (baseline 1.36 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

Status: 3 unchanged

Views & Navigation — 124 kB (baseline 124 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

Status: 17 unchanged

Panels & Settings — 570 kB (baseline 570 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

Status: 26 unchanged

User & Accounts — 27 kB (baseline 27 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

Status: 10 unchanged

Editors & Dialogs — 125 kB (baseline 125 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

Status: 8 unchanged

UI Components — 67.1 kB (baseline 67.1 kB) • ⚪ 0 B

Reusable component library chunks

Status: 14 unchanged

Data & Services — 3.5 MB (baseline 3.5 MB) • ⚪ 0 B

Stores, services, APIs, and repositories

Status: 17 unchanged

Utilities & Hooks — 550 kB (baseline 550 kB) • ⚪ 0 B

Helpers, composables, and utility bundles

Status: 38 unchanged

Vendor & Third-Party — 16.3 MB (baseline 16.3 MB) • ⚪ 0 B

External libraries and shared vendor chunks

Status: 17 unchanged

Other — 14 MB (baseline 14 MB) • ⚪ 0 B

Bundles that do not match a named category

Status: 286 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.8 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 54.7 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.5 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.8 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.1 MB heap
large-graph-pan: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.2 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 70.1 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.1 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 51.1 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.2 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 46.1 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 134ms TBT · 94.8 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.3 MB heap
vue-large-graph-idle: · 56.3 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 161.6 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 240ms TBT · 159.6 MB heap
workflow-execution: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.3 MB heap

⚠️ 7 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 518ms 523ms +1% ⚠️ z=4.1
canvas-zoom-sweep: task duration 413ms 384ms -7% ⚠️ z=2.5
large-graph-idle: task duration 746ms 709ms -5% ⚠️ z=3.1
large-graph-pan: task duration 1357ms 1315ms -3% ⚠️ z=5.4
minimap-idle: task duration 736ms 689ms -6% ⚠️ z=3.4
subgraph-idle: task duration 542ms 487ms -10% ⚠️ z=3.7
workflow-execution: event listeners 97 73 -25% ⚠️ z=4.8
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=0.4
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 9ms 9ms -1% z=-2.6
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 9 +0% z=-3.8
canvas-idle: task duration 518ms 523ms +1% ⚠️ z=4.1
canvas-idle: script duration 21ms 20ms -5% z=-2.5
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 66.6 MB 66.8 MB +0%
canvas-idle: DOM nodes 18 18 +0% z=-3.6
canvas-idle: event listeners 4 5 +25% z=-1.4
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.9
canvas-mouse-sweep: p95 frame time 17ms 17ms +1%
canvas-mouse-sweep: layout duration 4ms 4ms -3% z=0.3
canvas-mouse-sweep: style recalc duration 47ms 39ms -16% z=-1.1
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 77 75 -3% z=-1.6
canvas-mouse-sweep: task duration 973ms 894ms -8% z=0.5
canvas-mouse-sweep: script duration 133ms 125ms -6% z=-1.6
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 49.3 MB 54.7 MB +11%
canvas-mouse-sweep: DOM nodes -280 -111 -61% z=-66.8
canvas-mouse-sweep: event listeners -153 -75 -51% z=-19.9
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms -1%
canvas-zoom-sweep: layout duration 1ms 1ms -4% z=-0.8
canvas-zoom-sweep: style recalc duration 18ms 17ms -9% z=-1.7
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 32 +2% z=0.5
canvas-zoom-sweep: task duration 413ms 384ms -7% ⚠️ z=2.5
canvas-zoom-sweep: script duration 23ms 20ms -13% z=-2.4
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 69.7 MB 69.5 MB -0%
canvas-zoom-sweep: DOM nodes 77 78 +1% z=-2.2
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms +0% z=-0.2
dom-widget-clipping: p95 frame time 17ms 17ms -0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 8ms 9ms +9% z=-1.7
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 12 +9% z=-2.2
dom-widget-clipping: task duration 378ms 385ms +2% z=1.2
dom-widget-clipping: script duration 60ms 59ms -1% z=-2.6
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 50.7 MB 50.8 MB +0%
dom-widget-clipping: DOM nodes 18 20 +11% z=-1.5
dom-widget-clipping: event listeners 0 1 variance too high
large-graph-idle: avg frame time 17ms 17ms -0% z=-1.0
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 9ms 9ms -6% z=-3.4
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 8 9 +6% z=-9.9
large-graph-idle: task duration 746ms 709ms -5% ⚠️ z=3.1
large-graph-idle: script duration 122ms 112ms -8% z=0.9
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 63.3 MB 62.1 MB -2%
large-graph-idle: DOM nodes -283 -282 -1% z=-338.8
large-graph-idle: event listeners -149 -164 +10% z=-31.2
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms -0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 15ms 14ms -9% z=-4.6
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 -1% z=-1.7
large-graph-pan: task duration 1357ms 1315ms -3% ⚠️ z=5.4
large-graph-pan: script duration 458ms 434ms -5% z=1.3
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 64.5 MB 69.2 MB +7%
large-graph-pan: DOM nodes -284 -286 +1% z=-184.6
large-graph-pan: event listeners -149 -164 +10% z=-204.0
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms -0%
large-graph-zoom: layout duration 8ms 7ms -3%
large-graph-zoom: style recalc duration 14ms 15ms +5%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 64 65 +2%
large-graph-zoom: task duration 1572ms 1511ms -4%
large-graph-zoom: script duration 556ms 534ms -4%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 60.8 MB 70.1 MB +15%
large-graph-zoom: DOM nodes -287 -139 -52%
large-graph-zoom: event listeners -153 -73 -53%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.9
minimap-idle: p95 frame time 17ms 17ms -1%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 8ms 7ms -11% z=-2.9
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 8 -6% z=-3.0
minimap-idle: task duration 736ms 689ms -6% ⚠️ z=3.4
minimap-idle: script duration 121ms 111ms -9% z=1.3
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 64.1 MB 64.1 MB +0%
minimap-idle: DOM nodes -284 -284 +0% z=-221.6
minimap-idle: event listeners -151 -164 +9% z=-255.3
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 13ms 11ms -17% z=-1.9
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 46 48 +3% z=-0.8
subgraph-dom-widget-clipping: task duration 432ms 402ms -7% z=1.3
subgraph-dom-widget-clipping: script duration 127ms 118ms -7% z=-1.5
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 51.3 MB 51.1 MB -0%
subgraph-dom-widget-clipping: DOM nodes 18 21 +17% z=-1.1
subgraph-dom-widget-clipping: event listeners 6 6 +0% z=-1.7
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms -1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 9ms 9ms -4% z=-2.3
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 -5% z=-2.1
subgraph-idle: task duration 542ms 487ms -10% ⚠️ z=3.7
subgraph-idle: script duration 18ms 17ms -6% z=-1.2
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 66.9 MB 67.2 MB +0%
subgraph-idle: DOM nodes 20 19 -5% z=-1.9
subgraph-idle: event listeners 4 4 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms -0%
subgraph-mouse-sweep: layout duration 5ms 5ms -6% z=-0.3
subgraph-mouse-sweep: style recalc duration 41ms 38ms -8% z=-1.5
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 78 77 -1% z=-1.6
subgraph-mouse-sweep: task duration 884ms 846ms -4% z=1.2
subgraph-mouse-sweep: script duration 100ms 96ms -4% z=-0.8
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 44.0 MB 46.1 MB +5%
subgraph-mouse-sweep: DOM nodes 3 -279 -9400% z=-154.8
subgraph-mouse-sweep: event listeners -153 -153 +0% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms -0%
subgraph-transition-enter: p95 frame time 17ms 17ms -1%
subgraph-transition-enter: layout duration 14ms 12ms -11%
subgraph-transition-enter: style recalc duration 32ms 30ms -8%
subgraph-transition-enter: layout count 15 13 -13%
subgraph-transition-enter: style recalc count 19 17 -11%
subgraph-transition-enter: task duration 983ms 925ms -6%
subgraph-transition-enter: script duration 39ms 33ms -15%
subgraph-transition-enter: TBT 144ms 134ms -7%
subgraph-transition-enter: heap used 94.9 MB 94.8 MB -0%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2375 2375 +0%
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms +0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 39ms 37ms -6%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 249 250 +0%
viewport-pan-sweep: task duration 4775ms 4602ms -4%
viewport-pan-sweep: script duration 1507ms 1398ms -7%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 65.3 MB 65.3 MB +0%
viewport-pan-sweep: DOM nodes -283 -281 -1%
viewport-pan-sweep: event listeners -161 -147 -9%
vue-large-graph-idle: avg frame time 18ms 18ms +0%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 17306ms 15009ms -13%
vue-large-graph-idle: script duration 579ms 601ms +4%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 173.1 MB 161.6 MB -7%
vue-large-graph-idle: DOM nodes -8312 -8312 +0%
vue-large-graph-idle: event listeners -16389 -16388 -0%
vue-large-graph-pan: avg frame time 18ms 18ms +0%
vue-large-graph-pan: p95 frame time 17ms 17ms -0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 19ms 18ms -4%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 148 144 -3%
vue-large-graph-pan: task duration 21503ms 20890ms -3%
vue-large-graph-pan: script duration 920ms 941ms +2%
vue-large-graph-pan: TBT 360ms 240ms -33%
vue-large-graph-pan: heap used 166.1 MB 159.6 MB -4%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16383 -16383 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=1.1
workflow-execution: p95 frame time 17ms 17ms +0%
workflow-execution: layout duration 0ms 1ms +121% z=-4.3
workflow-execution: style recalc duration 20ms 19ms -4% z=-2.3
workflow-execution: layout count 2 3 +50% z=-3.6
workflow-execution: style recalc count 13 12 -12% z=-3.1
workflow-execution: task duration 114ms 102ms -10% z=-1.9
workflow-execution: script duration 10ms 10ms -4% z=-6.5
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 65.4 MB 64.3 MB -2%
workflow-execution: DOM nodes 121 119 -2% z=-6.0
workflow-execution: event listeners 97 73 -25% ⚠️ z=4.8
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-08-09T03:22:05.609Z",
  "gitSha": "d57a44c3d399dacf5932928f834abb607bd4ffbf",
  "branch": "fix/e2e-coverage-sourcemap-url",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2166.086000000007,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 7.865,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 573.4110000000001,
      "heapDeltaBytes": 5805872,
      "heapUsedBytes": 70140088,
      "domNodes": 14,
      "jsHeapTotalBytes": 24117248,
      "scriptDurationMs": 22.935000000000002,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2021.8869999999924,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.154999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 472.40399999999994,
      "heapDeltaBytes": 5776204,
      "heapUsedBytes": 69930344,
      "domNodes": 22,
      "jsHeapTotalBytes": 24117248,
      "scriptDurationMs": 16.545,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1857.0519999999817,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 39.273999999999994,
      "layouts": 12,
      "layoutDurationMs": 3.6659999999999995,
      "taskDurationMs": 938.3960000000001,
      "heapDeltaBytes": -14071256,
      "heapUsedBytes": 50196696,
      "domNodes": -282,
      "jsHeapTotalBytes": 23568384,
      "scriptDurationMs": 128.518,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1861.7569999999546,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 38.981,
      "layouts": 12,
      "layoutDurationMs": 3.68,
      "taskDurationMs": 850.125,
      "heapDeltaBytes": 207936,
      "heapUsedBytes": 64568108,
      "domNodes": 61,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 122.24399999999999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1722.426999999982,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 18.662,
      "layouts": 6,
      "layoutDurationMs": 0.7049999999999998,
      "taskDurationMs": 398.265,
      "heapDeltaBytes": 8730628,
      "heapUsedBytes": 72899808,
      "domNodes": 78,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 22.215000000000003,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1672.9860000000372,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 14.377999999999998,
      "layouts": 6,
      "layoutDurationMs": 0.505,
      "taskDurationMs": 369.139,
      "heapDeltaBytes": 8512220,
      "heapUsedBytes": 72840068,
      "domNodes": 77,
      "jsHeapTotalBytes": 24379392,
      "scriptDurationMs": 17.657,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 585.8929999999987,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.777999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 386.856,
      "heapDeltaBytes": -11314708,
      "heapUsedBytes": 53242776,
      "domNodes": 18,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 60.852999999999994,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 598.3870000000024,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 9.279,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 383.09200000000004,
      "heapDeltaBytes": -11258004,
      "heapUsedBytes": 53265208,
      "domNodes": 22,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 57.693,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2040.255000000002,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.106,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 748.0250000000002,
      "heapDeltaBytes": 6995696,
      "heapUsedBytes": 66382204,
      "domNodes": -282,
      "jsHeapTotalBytes": 3248128,
      "scriptDurationMs": 122.915,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2011.0899999999674,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.140999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 670.423,
      "heapDeltaBytes": 4383496,
      "heapUsedBytes": 63886468,
      "domNodes": -281,
      "jsHeapTotalBytes": 3510272,
      "scriptDurationMs": 101.26899999999999,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2251.4340000000175,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 14.393000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1346.349,
      "heapDeltaBytes": 3774372,
      "heapUsedBytes": 64383580,
      "domNodes": -287,
      "jsHeapTotalBytes": 3964928,
      "scriptDurationMs": 445.08500000000004,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2220.2000000000908,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 12.797000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1284.014,
      "heapDeltaBytes": 20158620,
      "heapUsedBytes": 80647328,
      "domNodes": -284,
      "jsHeapTotalBytes": 4227072,
      "scriptDurationMs": 423.723,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3260.356999999999,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 14.356999999999998,
      "layouts": 60,
      "layoutDurationMs": 7.4879999999999995,
      "taskDurationMs": 1530.817,
      "heapDeltaBytes": 24074720,
      "heapUsedBytes": 86867388,
      "domNodes": 10,
      "jsHeapTotalBytes": 7602176,
      "scriptDurationMs": 544.081,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3198.154999999929,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 15.340999999999998,
      "layouts": 60,
      "layoutDurationMs": 7.273,
      "taskDurationMs": 1490.413,
      "heapDeltaBytes": -1831400,
      "heapUsedBytes": 60092356,
      "domNodes": -287,
      "jsHeapTotalBytes": 6918144,
      "scriptDurationMs": 524.047,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2036.8030000000203,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.907000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 710.587,
      "heapDeltaBytes": 6608552,
      "heapUsedBytes": 67263764,
      "domNodes": -283,
      "jsHeapTotalBytes": 4296704,
      "scriptDurationMs": 117.43800000000002,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2033.9999999999918,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 6.463,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 666.5660000000001,
      "heapDeltaBytes": 6704924,
      "heapUsedBytes": 67214704,
      "domNodes": -285,
      "jsHeapTotalBytes": 3510272,
      "scriptDurationMs": 103.848,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 611.1569999999915,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.797999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 415.1,
      "heapDeltaBytes": -11175100,
      "heapUsedBytes": 53437816,
      "domNodes": 20,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 121.677,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 561.3999999999351,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 10.944999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 388.99300000000005,
      "heapDeltaBytes": -10521164,
      "heapUsedBytes": 53767020,
      "domNodes": 22,
      "jsHeapTotalBytes": 25952256,
      "scriptDurationMs": 115.321,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2014.9429999999597,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.520999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 529.202,
      "heapDeltaBytes": 5988540,
      "heapUsedBytes": 70352920,
      "domNodes": 20,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 20.054000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2005.5699999999206,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.710000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 445.6809999999999,
      "heapDeltaBytes": 5948072,
      "heapUsedBytes": 70481784,
      "domNodes": 18,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 13.745999999999999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1739.7740000000113,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 38.45,
      "layouts": 16,
      "layoutDurationMs": 4.3759999999999994,
      "taskDurationMs": 855.5579999999999,
      "heapDeltaBytes": -15766260,
      "heapUsedBytes": 48686420,
      "domNodes": -279,
      "jsHeapTotalBytes": 23044096,
      "scriptDurationMs": 97.95,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1741.2760000000844,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 36.836999999999996,
      "layouts": 16,
      "layoutDurationMs": 4.799,
      "taskDurationMs": 837.106,
      "heapDeltaBytes": -16335816,
      "heapUsedBytes": 48026948,
      "domNodes": -279,
      "jsHeapTotalBytes": 22257664,
      "scriptDurationMs": 93.845,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1384.4879999999762,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 29.74700000000001,
      "layouts": 13,
      "layoutDurationMs": 12.021,
      "taskDurationMs": 924.946,
      "heapDeltaBytes": 30978888,
      "heapUsedBytes": 99448836,
      "domNodes": 13673,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 33.43300000000001,
      "eventListeners": 2375,
      "totalBlockingTimeMs": 134,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8468.38200000002,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 37.43,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4727.288,
      "heapDeltaBytes": 12767044,
      "heapUsedBytes": 72139512,
      "domNodes": -281,
      "jsHeapTotalBytes": 5799936,
      "scriptDurationMs": 1432.485,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.669999999999952,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8352.827000000048,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 36.472,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4476.744,
      "heapDeltaBytes": 5448180,
      "heapUsedBytes": 64897992,
      "domNodes": -281,
      "jsHeapTotalBytes": 5537792,
      "scriptDurationMs": 1362.6970000000001,
      "eventListeners": -163,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12934.976000000006,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12908.083999999999,
      "heapDeltaBytes": -54424904,
      "heapUsedBytes": 171747484,
      "domNodes": -8312,
      "jsHeapTotalBytes": -1777664,
      "scriptDurationMs": 594.5879999999999,
      "eventListeners": -16389,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 17137.778999999908,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17110.577999999998,
      "heapDeltaBytes": -61965196,
      "heapUsedBytes": 167151412,
      "domNodes": -8312,
      "jsHeapTotalBytes": -6496256,
      "scriptDurationMs": 608.1419999999999,
      "eventListeners": -16387,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20889.051999999992,
      "styleRecalcs": 143,
      "styleRecalcDurationMs": 17.940000000000012,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20841.672,
      "heapDeltaBytes": -44214384,
      "heapUsedBytes": 178711604,
      "domNodes": -8312,
      "jsHeapTotalBytes": -8663040,
      "scriptDurationMs": 953.9629999999999,
      "eventListeners": -16383,
      "totalBlockingTimeMs": 215,
      "frameDurationMs": 17.77333333333336,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 21002.357000000076,
      "styleRecalcs": 144,
      "styleRecalcDurationMs": 19.028000000000045,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 20938.307,
      "heapDeltaBytes": -66268292,
      "heapUsedBytes": 156071948,
      "domNodes": -8312,
      "jsHeapTotalBytes": -10948608,
      "scriptDurationMs": 928.379,
      "eventListeners": -16383,
      "totalBlockingTimeMs": 265,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 117.8780000000188,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 17.444000000000003,
      "layouts": 3,
      "layoutDurationMs": 1.1630000000000003,
      "taskDurationMs": 91.41899999999998,
      "heapDeltaBytes": 3197352,
      "heapUsedBytes": 66465168,
      "domNodes": 114,
      "jsHeapTotalBytes": 3145728,
      "scriptDurationMs": 9.392000000000001,
      "eventListeners": 49,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 463.1920000000491,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 20.759,
      "layouts": 3,
      "layoutDurationMs": 0.6900000000000001,
      "taskDurationMs": 112.94999999999999,
      "heapDeltaBytes": 5057512,
      "heapUsedBytes": 68457152,
      "domNodes": 123,
      "jsHeapTotalBytes": 5505024,
      "scriptDurationMs": 10.148000000000001,
      "eventListeners": 97,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    }
  ]
}

@coderabbitai

coderabbitai Bot commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 34 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: ad613688-10b3-4724-bc84-8afc0a0f7ce1

📥 Commits

Reviewing files that changed from the base of the PR and between 677d9f6 and 78c9f9a.

📒 Files selected for processing (5)
  • .github/workflows/ci-tests-e2e-coverage.yaml
  • .github/workflows/ci-tests-e2e.yaml
  • scripts/coverage-slack-notify.test.ts
  • scripts/coverage-slack-notify.ts
  • vite.config.mts
📝 Walkthrough

Walkthrough

The change enables source-map coverage in E2E builds, filters LCOV data to project files, requires at least 100 source files, and validates this threshold in the E2E coverage workflow.

Changes

Coverage source maps

Layer / File(s) Summary
Source map build configuration
.github/workflows/ci-tests-e2e.yaml, vite.config.mts
The E2E setup enables COLLECT_COVERAGE. Vite generates visible sourcemaps for coverage builds, hidden sourcemaps for other generated-sourcemap builds, and no sourcemaps when disabled.
LCOV project-file parsing
scripts/coverage-slack-notify.ts, scripts/coverage-slack-notify.test.ts
parseLcovContent filters src/ and packages/ files, returns null below the 100-file threshold, and is exported for tests. Direct execution now uses an invocation guard.
Coverage workflow validation
.github/workflows/ci-tests-e2e-coverage.yaml
The workflow reports the number of source-mapped files and fails when fewer than 100 project files are found.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Sequence Diagram(s)

sequenceDiagram
  participant E2ESetup as E2E setup job
  participant Vite as vite.config.mts
  participant LCOV as LCOV parser
  participant Workflow as E2E coverage workflow
  E2ESetup->>Vite: Enable COLLECT_COVERAGE
  Vite->>LCOV: Produce source-mapped coverage data
  LCOV->>Workflow: Filter and count src/ and packages/ entries
  Workflow-->>Workflow: Fail when fewer than 100 files are found
Loading

Suggested reviewers: drjkl


Important

Pre-merge checks failed

Please resolve all errors before merging. Addressing warnings is optional.

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
End-To-End Regression Coverage For Fixes ❓ Inconclusive The review context provides changed files and a PR description, but it does not provide the PR title or commit subjects required to evaluate the bug-fix signal. Provide the PR title and commit subjects so the bug-fix-language condition can be verified.
✅ Passed checks (5 passed)
Check name Status Explanation
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Adr Compliance For Entity/Litegraph Changes ✅ Passed The changed-file list contains no files under src/lib/litegraph/, src/ecs/, or graph entity-related files, so this check does not apply.
Title check ✅ Passed The title clearly and concisely states that the PR restores E2E coverage source mapping.
Description check ✅ Passed The description includes the required summary, changes, review focus, root cause, and implementation details.
✨ Finishing Touches 💡 1
🛠️ Fix failing CI checks 💡
  • Create stacked PR
  • Commit on current branch
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/e2e-coverage-sourcemap-url

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@scripts/coverage-slack-notify.test.ts`:
- Around line 49-54: Add a behavioral assertion in the “too few project files”
test around parseLcovContent and sourceEntries that covers exactly 100 project
files, verifying the documented minimum-boundary behavior while preserving the
existing below-threshold assertion for 99 files and the unrelated single-file
case.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: b41b06af-d9c4-4e16-9ff4-5b5de5ca05d1

📥 Commits

Reviewing files that changed from the base of the PR and between a4342bb and d3b09f7.

📒 Files selected for processing (6)
  • .github/actions/setup-frontend/action.yaml
  • .github/workflows/ci-tests-e2e-coverage.yaml
  • .github/workflows/ci-tests-e2e.yaml
  • scripts/coverage-slack-notify.test.ts
  • scripts/coverage-slack-notify.ts
  • vite.config.mts

Comment thread scripts/coverage-slack-notify.test.ts
Reuses the flag that already marks an E2E coverage run instead of adding a
second sourcemap knob, dropping the setup-frontend input along with it.
GENERATE_SOURCEMAP can't carry this: Comfy-Org/cloud already sets it true for
the staging and prod builds, which must keep 'hidden'.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/workflows/ci-tests-e2e-coverage.yaml:
- Around line 94-95: Update the coverage validation around MAPPED_SF to report
the observed SF path format from the merged tracefile instead of attributing
every failure to missing source maps. Preserve the failure for insufficient
mapped project files, while including representative SF paths and distinguishing
absolute paths, file:// URLs, and low mapped-file counts in the error output.

In @.github/workflows/ci-tests-e2e.yaml:
- Around line 32-35: Scope COLLECT_COVERAGE=true to the E2E frontend build by
moving it from the job-level env block to the Setup frontend step, or explicitly
unset it for Build cloud frontend. Ensure pnpm build:cloud runs without
coverage-enabled sourcemaps while the frontend build used for V8 coverage
retains the variable.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 5e22aaa0-6db5-441e-9cc7-975fdeba8b76

📥 Commits

Reviewing files that changed from the base of the PR and between d3b09f7 and 677d9f6.

📒 Files selected for processing (3)
  • .github/workflows/ci-tests-e2e-coverage.yaml
  • .github/workflows/ci-tests-e2e.yaml
  • vite.config.mts

Comment thread .github/workflows/ci-tests-e2e-coverage.yaml Outdated
Comment thread .github/workflows/ci-tests-e2e.yaml Outdated
@codecov

codecov Bot commented Aug 9, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@           Coverage Diff            @@
##             main   #14950    +/-   ##
========================================
  Coverage   78.75%   78.76%            
========================================
  Files        1868     1868            
  Lines      115515   115821   +306     
  Branches    33610    33734   +124     
========================================
+ Hits        90979    91228   +249     
- Misses      23992    24036    +44     
- Partials      544      557    +13     
Flag Coverage Δ
unit 72.36% <ø> (+0.03%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.
see 7 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Addresses review feedback:
- Job-level env also reached `Build cloud frontend`, putting sourcemap comments
  in the cloud artifact. Scope it to the `Setup frontend` step.
- Report the SF paths actually observed rather than naming one cause.
- Cover the exact MIN_SOURCE_FILES boundary.
@dosubot dosubot Bot added size:S This PR changes 10-29 lines, ignoring generated files. and removed size:M This PR changes 30-99 lines, ignoring generated files. labels Aug 9, 2026
coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 9, 2026
Comment thread vite.config.mts Outdated
Comment on lines +552 to +556
sourcemap: GENERATE_SOURCEMAP
? COLLECT_COVERAGE
? true
: 'hidden'
: false,

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ternary is a little awkward.
The boolean form is also a little awkward:

sourcemap: !!GENERATE_SOURCEMAP && (!!COLLECT_COVERAGE || 'hidden'),

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dropped the nesting — GENERATE_SOURCEMAP && (COLLECT_COVERAGE || 'hidden'), without the !! since both are already booleans. 78c9f9a

Comment thread .github/workflows/ci-tests-e2e.yaml Outdated
Comment on lines +39 to +40
# The build must emit `//# sourceMappingURL=` comments or monocart cannot
# map the sharded job's V8 coverage back to src/**. See vite.config.mts.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# The build must emit `//# sourceMappingURL=` comments or monocart cannot
# map the sharded job's V8 coverage back to src/**. See vite.config.mts.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed; vite.config.mts still explains the coupling. 78c9f9a

DrJKL
DrJKL previously approved these changes Aug 9, 2026
.pinact.yaml allowlists actions/download-artifact at v8, so this one straggler
fails validate-pins on every PR that touches this file. The other five uses in
the same workflow are already v8.
@christian-byrne
christian-byrne dismissed stale reviews from DrJKL and coderabbitai[bot] via 3e5bc25 August 9, 2026 02:52
Per review: drop the nested ternary and the workflow comment. vite.config.mts
still carries the explanation.
@christian-byrne
christian-byrne merged commit a5f1a9b into main Aug 9, 2026
65 checks passed
@christian-byrne
christian-byrne deleted the fix/e2e-coverage-sourcemap-url branch August 9, 2026 04:19
pull Bot pushed a commit to Mu-L/ComfyUI_frontend that referenced this pull request Aug 16, 2026
<!-- ccr-slack-attribution -->
_Requested by **Christian Byrne** · [Slack
thread](https://comfy-organization.slack.com/archives/C0AP09LKRDZ/p1786872633268499?thread_ts=1786872633.268499&cid=C0AP09LKRDZ)_

## Summary

The e2e coverage merge job only ran when the upstream `CI: Tests E2E`
workflow's overall conclusion was `success`, so a single flaky shard
(16-shard matrix, `fail-fast: false`) skipped merging every other
shard's real coverage — the reported % bounces around a narrow band
instead of climbing as coverage improves.

## Changes

- **What**: `merge` job in
`.github/workflows/ci-tests-e2e-coverage.yaml` now runs on any completed
conclusion except `cancelled` (was: `== 'success'`), so
partial-shard-failure runs still get merged. One-line comment added
explaining why.
- **Breaking**: none

## Review Focus

- The download-artifact step already tolerates a partial set of shard
artifacts (regex-matched artifact names + `if_no_artifact_found: warn`),
and each shard's coverage-upload step runs with `if: always()`, so it
already didn't assume all 16 shards would be present — no change needed
there.
- The "Assert coverage was mapped back to source" step (minimum
source-mapped file count, added in Comfy-Org#14950) is untouched — still fails
the job loudly on a degenerate merge.
- `coverage-slack-notify.yaml` already downloads the `e2e-coverage`
artifact with `continue-on-error: true` / `if_no_artifact_found: warn`,
and `scripts/coverage-slack-notify.ts` already treats a
missing/degenerate lcov as "no data" rather than an anomaly — no change
needed there either.
- No new jobs, retries, or timeouts added, so this doesn't add CI
wall-clock time — it's purely a gating/condition change on an existing
job.


---
_Generated by [Claude
Code](https://claude.ai/code/session_01CdcyUD4e6kt6CAuRNkEJ7H)_

Co-authored-by: Claude <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:S This PR changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants