Skip to content

refactor(missingMedia): adopt file_path as primary detection key (FE-746)#12398

Open
dante01yoon wants to merge 9 commits into
mainfrom
jaewon/fe-746-l3-fe-migrate-missingmediascants-to-unified-file_path-based
Open

refactor(missingMedia): adopt file_path as primary detection key (FE-746)#12398
dante01yoon wants to merge 9 commits into
mainfrom
jaewon/fe-746-l3-fe-migrate-missingmediascants-to-unified-file_path-based

Conversation

@dante01yoon

@dante01yoon dante01yoon commented May 21, 2026

Copy link
Copy Markdown
Collaborator

Summary

Aligns missingMediaScan with RFC BE-808 v2 (Asset Identity Semantics). Removes the isCloud branch from the scanner / verifier surface so both backends consult the same asset-listing oracle once BE-933 / BE-934 ship.

Changes & rationale

Schema — assetSchema.ts

Add file_path: z.string().nullish() to AssetItem. Both BE PRs emit file_path as nullable optional (str | None in BE-933, *string in BE-934). Nullish (not optional-only) because backends explicitly send null for hash-only assets, not absence.

Detection — getAssetDetectionNames in missingMediaAssetResolver.ts

Union file_path, asset_hash, name, and subfolder + name variants into the detection-name set for every asset.

Why union, not file_path-only. I originally short-circuited on file_path on the premise that it was the canonical match key. Re-reading RFC BE-808 v2 directly shows that's not what the RFC says: §3 makes id the identity field, and §4 calls file_path "a standalone locator/display string" emitted on a BEST EFFORT basis. The workflow widget value (the thing on the other side of the comparison) does not auto-upgrade when the backend response shape changes — a workflow authored a month ago still stores the bare filename "photo.png". An asset that newly emits file_path: "input/sub/photo.png" plus the bare-filename widget would false-negative the match under the early-return, marking a present file as missing. Codex adversarial review caught this; the RFC re-read confirmed the framing was wrong. Union match keeps every legacy widget shape (bare filename, hash, annotated path, subfolder/name) verifiable through the BE-792 deprecation window.

Scanner — scanAllMediaCandidates / scanNodeMediaCandidates

Drop the isCloud parameter. Delete the OSS synchronous-shortcut branch at the previous missingMediaScan.ts:103-118. All candidates now leave isMissing as undefined and resolve asynchronously through verifyMediaCandidates against the unified asset listing.

Why drop the sync shortcut. Keeping a backend-conditional sync path against widget.options.values would re-introduce the very divergence FE-746 removes. Cloud has always taken the async path; OSS moves onto it post-BE-786. The Errors-tab UX already tolerates async resolution.

Verification — verifyMediaCandidates

Rename MediaVerificationOptions.isCloudallowCompactSuffix. The flag still selects between \s+\[(input|output)\]$ (OSS, space-required to avoid stripping literal brackets from filenames) and \s*\[(input|output)\]$ (Cloud, compact form). Notion §4.2 classifies this regex split as N1 / workflow-identity territory and explicitly leaves it out of M1. The rename severs the lexical coupling to backend identity so the residual flag describes what it actually does (annotation grammar), not who emits it.

Resolver — resolveMissingMediaAssetSources

  • Drop isCloud from the public options.
  • Always call assetService.getInputAssetsIncludingPublic (previously OSS was Promise.resolve([])).
  • Switch Promise.all + abortSiblingsOnFailure to Promise.allSettled with per-branch soft-degrade.

Why soft-degrade. The two oracles (/api/assets for input, Cloud /api/assets?include_tags=output or OSS /history for generated) are independent data sources. Under the previous cascade, an /api/assets 404 — possible on pre-BE-786 self-hosted OSS, or during a BE-934 partial deploy / zod schema skew — aborted the generated-history fetch too and surfaced as a single toast warning, leaving every candidate's isMissing stuck at undefined. Codex adversarial review flagged this silent-fail. With allSettled, each branch degrades to [] independently; verifyMediaCandidates then marks affected candidates missing rather than swallowing the verification. RFC §4's BEST EFFORT framing already implies the contract has soft-fail expectations, so this aligns the resolver shape with the RFC.

Generated-assets oracle still branches internally

fetchGeneratedAssets still picks Cloud asset API vs OSS job-history based on a module-level isCloud import. The public API of the resolver no longer carries isCloud, but unifying this fork depends on whether OSS auto-registers output files as assets post-BE-786 — out of FE-746's stated scope. Tracked as a follow-up.

Callers

Caller-arg cleanup that follows mechanically from the signature changes:

  • src/scripts/app.ts:1508, 1523
  • src/composables/graph/useErrorClearingHooks.ts:249, 305
  • src/platform/assets/utils/markDeletedAssetsAsMissingMedia.ts:41

Tests

  • Module-level isCloud mock with mutable holder so each test can drive the residual generated-assets oracle (Cloud /api/assets vs OSS history) per case.
  • getAssetDetectionNames: union behaviour assertion, file_path-null fallback, empty asset, slash/backslash subfolder variants.
  • verifyMediaCandidates: bare-filename widget × file_path-emitting asset regression test (the false-negative scenario Codex flagged).
  • Resolver resilience: /api/assets failure leaves generated fetch alive; /history failure leaves input fetch alive.
  • Scanner tests rewritten to assert the defer-to-verifier contract (all candidates return isMissing: undefined).

MUST NOT MERGE until backend ships

Both BE PRs must land and roll out before this can merge — until then the schema accepts file_path but no response actually emits it, so the file_path branch of the union is inert until BE deploys.

  • BE-933 / comfyanonymous/ComfyUI#14005 (Simon, currently draft) merged + container-bumped
  • BE-934 / Comfy-Org/cloud#3744 (Matt, currently draft) merged + rolled to preview/prod
  • FE-729 / FE-730 / FE-731 merged into main; rebase before flipping out of Draft
  • Manual verification on both backends (workflow with present + missing media, including BE-933 hash-only and BE-934 tagless null cases)
  • Before/after screenshots from the Errors tab

Detailed plan, BE PR diffs, and scope analysis live at temp/plans/fe-746-missing-media-scan-unify.md. Adversarial-review write-up at temp/summaries/fe-746-adversarial-review.html.

Test plan

  • pnpm typecheck — clean
  • pnpm lint — 0 errors (3 pre-existing warnings unrelated)
  • pnpm test:unit --run src/platform/missingMedia src/composables/graph/useErrorClearingHooks.test.ts src/platform/assets/utils/markDeletedAssetsAsMissingMedia — 135/135 pass
  • Broader smoke (src/platform/assets src/composables src/scripts) — 1963/1963 pass
  • Manual repro on Cloud + OSS — deferred until BE PRs ship

Fixes FE-746

…746)

- Add `file_path` to AssetItem schema (nullable per BE-933/BE-934 wire shape)
- Rewrite `getAssetDetectionNames`: use `file_path` alone when emitted,
  fall back to the legacy `asset_hash` / `name` / `subfolder + name` union
  when null (hash-only Core registrations, tagless Cloud rows, legacy data)
- Drop `isCloud` parameter from `scanAllMediaCandidates`,
  `scanNodeMediaCandidates`, and `MediaVerificationOptions` — both backends
  consult the same asset listing oracle post-BE-933/934
- Remove the OSS synchronous-shortcut branch; all candidates now resolve
  asynchronously through `verifyMediaCandidates` against the unified listing
- Rename `MediaVerificationOptions.isCloud` to `allowCompactSuffix`
  (N1-deferred annotation grammar flag, no longer a backend identity field)
- Always call `assetService.getInputAssetsIncludingPublic`; retain internal
  `isCloud` only for the generated-assets oracle (Cloud /api/assets vs OSS
  history) — unifying that path is tracked separately
- Update callers in app.ts, useErrorClearingHooks.ts, markDeletedAssetsAsMissingMedia.ts
- Update tests with module-level `isCloud` mock for generated-asset oracle
  control; add `file_path`-primary matching test case

Per RFC BE-808 v2 (Asset Identity Semantics). DO NOT MERGE until BE-933
(Comfy-Org/ComfyUI#14005) and BE-934 (Comfy-Org/cloud#3744) merge
and ship — both backends must emit `file_path` for the new path to fire.

Fixes FE-746
@coderabbitai

coderabbitai Bot commented May 21, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

Scans no longer pass cloud-mode and emit candidates with undefined isMissing. Verification now accepts allowCompactSuffix to control compact-suffix normalization. Asset schema adds optional file_path. Resolver imports isCloud at module level and selects cloud/history behavior internally instead of via options. All tests switch to a runtime isCloudHolder mock pattern.

Changes

Missing Media Pipeline Refactor

Layer / File(s) Summary
Asset schema and detection contract
src/platform/assets/schemas/assetSchema.ts, src/platform/missingMedia/missingMediaAssetResolver.ts
Adds optional file_path to asset schema; updates getAssetDetectionNames to include file_path in derived detection keys with legacy fallback behavior.
Scanning functions refactor
src/platform/missingMedia/missingMediaScan.ts
Removes isCloud parameter from scanAllMediaCandidates and scanNodeMediaCandidates; both now emit MissingMediaCandidate with isMissing: undefined and drop immediate OSS resolution logic.
Verification options and contract
src/platform/missingMedia/missingMediaScan.ts
Replaces isCloud option with allowCompactSuffix in MediaVerificationOptions; verifyMediaCandidates uses allowCompactSuffix to control compact-suffix normalization and passes it to resolveAssetSources.
Resolver runtime cloud selection
src/platform/missingMedia/missingMediaAssetResolver.ts
Removes isCloud from ResolveMissingMediaAssetSourcesOptions; imports isCloud at module level and selects cloud/history behavior internally; unconditionally fetches input assets and conditionally fetches generated assets via internal branching.
Test cloud-mode mocking infrastructure
src/platform/missingMedia/missingMediaScan.test.ts, src/platform/missingMedia/missingMediaAssetResolver.test.ts
Adds hoisted isCloudHolder and vi.mock getter for isCloud to enable per-test runtime cloud/OSS toggling; beforeEach resets holder to false and restores defaults.
Scan function tests
src/platform/missingMedia/missingMediaScan.test.ts, src/composables/graph/useErrorClearingHooks.test.ts
Removes isCloud from scanNodeMediaCandidates and scanAllMediaCandidates calls; expects isMissing: undefined (deferred to verification); adjusts upload-state and nested subgraph scan assertions.
Verification function tests
src/platform/missingMedia/missingMediaScan.test.ts
All verifyMediaCandidates invocations use allowCompactSuffix instead of isCloud; expected resolveAssetSources calls drop isCloud; explicit isCloudHolder.value assignment for cloud scenarios; added abort/signal handling assertions.
Resolver function tests
src/platform/missingMedia/missingMediaAssetResolver.test.ts
Removes explicit isCloud option from resolveMissingMediaAssetSources calls; controls cloud behavior via isCloudHolder.value; replaces cloud abort-on-input-failure test with separate soft-degrade scenarios; adds getAssetDetectionNames suite covering file_path union and legacy fallbacks.
Callsite updates
src/scripts/app.ts, src/composables/graph/useErrorClearingHooks.ts, src/platform/assets/utils/markDeletedAssetsAsMissingMedia.ts
Removes isCloud from scan calls; passes allowCompactSuffix: isCloud to verification; updates app pipeline and utility invocations to match new signatures.
Browser integration tests
browser_tests/tests/missingMediaAssetUnion.spec.ts, browser_tests/assets/missing/fe746_load_image_bare_filename.json
New Playwright spec for missing-media detection with file_path union; covers file_path divergence, null fallback, missing-file detection, and API failure graceful degradation; includes test fixture with bare filename.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~70 minutes

Possibly related PRs

Suggested labels

core/1.44, cloud/1.44

Suggested reviewers

  • pythongosssss

Poem

🐇 Scanned and deferred, a clever split—
Cloud flags gone, but tests submit!
File paths bloom in schemas bright,
allowCompactSuffix sets things right,
One refactor hopped through, clean and tight!

🚥 Pre-merge checks | ✅ 6 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 37.50% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (6 passed)
Check name Status Explanation
Title check ✅ Passed The title 'refactor(missingMedia): adopt file_path as primary detection key (FE-746)' is concise, specific, and clearly summarizes the main change: refactoring missing media detection logic to adopt file_path as a detection key.
Description check ✅ Passed The PR description comprehensively covers all required template sections: clear summary of changes and rationale, detailed breakdown of what changed (schema, detection, scanner, verification, resolver), explanation of design decisions, test plan with specific commands and passing counts, and identification of blocking dependencies.
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.
End-To-End Regression Coverage For Fixes ✅ Passed PR includes E2E regression coverage: missingMediaAssetUnion.spec.ts (197 lines) with four Playwright test cases covering file_path union behavior, legacy fallback, missing detection, and soft-degra...
Adr Compliance For Entity/Litegraph Changes ✅ Passed This PR does not modify files under src/lib/litegraph/ or src/ecs/, and makes no changes to graph entities or extension-facing callbacks. ADR compliance check for litegraph/ECS does not apply.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch jaewon/fe-746-l3-fe-migrate-missingmediascants-to-unified-file_path-based

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

coderabbitai[bot]
coderabbitai Bot previously approved these changes May 21, 2026
@codecov

codecov Bot commented May 21, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 95.65217% with 1 line in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/scripts/app.ts 0.00% 1 Missing ⚠️
@@             Coverage Diff             @@
##             main   #12398       +/-   ##
===========================================
- Coverage   75.99%   62.97%   -13.02%     
===========================================
  Files        1573     1462      -111     
  Lines       89008    74584    -14424     
  Branches    27397    19357     -8040     
===========================================
- Hits        67640    46972    -20668     
- Misses      20710    27267     +6557     
+ Partials      658      345      -313     
Flag Coverage Δ
e2e ?
unit 62.97% <95.65%> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/composables/graph/useErrorClearingHooks.ts 94.08% <100.00%> (-3.82%) ⬇️
src/platform/assets/schemas/assetSchema.ts 100.00% <ø> (ø)
...rm/assets/utils/markDeletedAssetsAsMissingMedia.ts 100.00% <100.00%> (ø)
...platform/missingMedia/missingMediaAssetResolver.ts 97.95% <100.00%> (+2.50%) ⬆️
src/platform/missingMedia/missingMediaScan.ts 98.78% <100.00%> (+0.64%) ⬆️
src/platform/missingModel/missingModelPipeline.ts 79.34% <100.00%> (-4.91%) ⬇️
src/scripts/app.ts 23.95% <0.00%> (-44.62%) ⬇️

... and 1126 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.

…ase B)

`getAssetDetectionNames` previously short-circuited on `asset.file_path`,
returning only that key when emitted. That premise — `file_path` as the
primary match key — doesn't match RFC BE-808 v2: §3 names `id` as the
identity field and §4 explicitly calls `file_path` "a standalone
locator/display string" emitted on a BEST EFFORT basis.

Workflow widget values predate the BE-933 / BE-934 `file_path` rollout
and may still be bare filenames, hashes, or annotated paths. A pre-BE
workflow paired with a post-BE asset would false-negative under the
early-return: the asset emits `file_path: "input/sub/photo.png"` while
the widget value is still `"photo.png"`, and the previous code would
mark the reference missing even though the file is present.

Union `file_path`, `asset_hash`, `name`, and `subfolder + name` variants
so workflows authored against any historical asset shape keep matching.
Both backends round-trip `name` through the BE-792 deprecation window,
so the legacy keys stay valid for the duration of the rollout.

Adversarial review (Codex) flagged the false-negative; RFC re-read
confirmed `id` (not `file_path`) is the identity field. Plan and
docblock terminology updated to drop the misleading "canonical match
key" framing.

Adds a regression test for the bare-filename × file_path-emitting asset
case.

@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.

🧹 Nitpick comments (3)
src/platform/missingMedia/missingMediaScan.test.ts (1)

512-515: ⚡ Quick win

Remove redundant narrative comments from the test body.

The test title already communicates intent; these lines add maintenance overhead without changing behavior.

As per coding guidelines, "Write code that is expressive and self-documenting to minimize need for code comments" and "Avoid new usage of code comments; do not add or retain redundant comments."

🤖 Prompt for 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.

In `@src/platform/missingMedia/missingMediaScan.test.ts` around lines 512 - 515,
Remove the redundant narrative comments in the test that start with
"Pre-BE-933/934 workflow: widget value is the bare filename..." — open the test
in missingMediaScan.test.ts and delete those explanatory comment lines inside
the test body so the test title/description alone documents intent; leave
assertions and setup (the existing test function and its assertions) unchanged.
src/platform/assets/schemas/assetSchema.ts (1)

9-14: ⚡ Quick win

Keep schema code self-documenting and move RFC prose out of inline comments.

This block is policy documentation rather than implementation detail and is likely to drift. Keep only minimal field intent in code and move rollout/RFC context to docs/tests.

As per coding guidelines, "Write code that is expressive and self-documenting to minimize need for code comments" and "Avoid new usage of code comments; do not add or retain redundant comments."

🤖 Prompt for 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.

In `@src/platform/assets/schemas/assetSchema.ts` around lines 9 - 14, The large
RFC/prose comment in assetSchema.ts should be replaced with a concise,
self-documenting comment for the schema field(s): remove the rollout/RFC
paragraph and retain a short intent line such as "namespace-rooted
locator/display string (optional) — consumers MUST NOT rely on this; use id for
identity." Update references in the repo by moving the RFC details into a
dedicated docs or tests file (e.g., RFC/BE-808 or tests that assert behavior)
and ensure any code comments reference the resolver symbol
missingMediaAssetResolver.getAssetDetectionNames and field names file_path and
id so future readers can find the external RFC documentation.
src/platform/missingMedia/missingMediaAssetResolver.ts (1)

80-89: ⚡ Quick win

Trim inline rollout prose in implementation code.

This explanation is valuable, but it’s too policy-heavy for a hot-path function comment and will age quickly. Prefer a concise comment plus test/docs as source of truth.

As per coding guidelines, "Write code that is expressive and self-documenting to minimize need for code comments" and "Avoid new usage of code comments; do not add or retain redundant comments."

🤖 Prompt for 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.

In `@src/platform/missingMedia/missingMediaAssetResolver.ts` around lines 80 - 89,
The long rollout/policy prose in the comment above the detection keys should be
shortened: replace the paragraph with a concise one-line summary stating the
intent (e.g., "Detection keys include file_path, asset_hash, name, and
subfolder+name to preserve legacy matching semantics for asset identity per
BE-808"), remove the historical/rollout details, and add or update relevant
tests/docs (unit/integration tests that cover matching behavior and a docs note)
to capture the removed explanation; update the comment located near the
detection logic in missingMediaAssetResolver (the block referencing `file_path`,
`asset_hash`, `name`, and `subfolder + name`) accordingly.
🤖 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.

Nitpick comments:
In `@src/platform/assets/schemas/assetSchema.ts`:
- Around line 9-14: The large RFC/prose comment in assetSchema.ts should be
replaced with a concise, self-documenting comment for the schema field(s):
remove the rollout/RFC paragraph and retain a short intent line such as
"namespace-rooted locator/display string (optional) — consumers MUST NOT rely on
this; use id for identity." Update references in the repo by moving the RFC
details into a dedicated docs or tests file (e.g., RFC/BE-808 or tests that
assert behavior) and ensure any code comments reference the resolver symbol
missingMediaAssetResolver.getAssetDetectionNames and field names file_path and
id so future readers can find the external RFC documentation.

In `@src/platform/missingMedia/missingMediaAssetResolver.ts`:
- Around line 80-89: The long rollout/policy prose in the comment above the
detection keys should be shortened: replace the paragraph with a concise
one-line summary stating the intent (e.g., "Detection keys include file_path,
asset_hash, name, and subfolder+name to preserve legacy matching semantics for
asset identity per BE-808"), remove the historical/rollout details, and add or
update relevant tests/docs (unit/integration tests that cover matching behavior
and a docs note) to capture the removed explanation; update the comment located
near the detection logic in missingMediaAssetResolver (the block referencing
`file_path`, `asset_hash`, `name`, and `subfolder + name`) accordingly.

In `@src/platform/missingMedia/missingMediaScan.test.ts`:
- Around line 512-515: Remove the redundant narrative comments in the test that
start with "Pre-BE-933/934 workflow: widget value is the bare filename..." —
open the test in missingMediaScan.test.ts and delete those explanatory comment
lines inside the test body so the test title/description alone documents intent;
leave assertions and setup (the existing test function and its assertions)
unchanged.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 82b96acf-ffe2-41ed-a859-ad1da2b3fd7c

📥 Commits

Reviewing files that changed from the base of the PR and between 9864230 and 37f9a14.

📒 Files selected for processing (4)
  • src/platform/assets/schemas/assetSchema.ts
  • src/platform/missingMedia/missingMediaAssetResolver.test.ts
  • src/platform/missingMedia/missingMediaAssetResolver.ts
  • src/platform/missingMedia/missingMediaScan.test.ts

coderabbitai[bot]
coderabbitai Bot previously approved these changes May 22, 2026
…se.allSettled)

`resolveMissingMediaAssetSources` previously ran the input-asset fetch
(`/api/assets`) and the generated-asset fetch (Cloud `/api/assets` or
OSS `/history`) under `Promise.all` with `abortSiblingsOnFailure`, so a
single rejection took down both. With the FE-746 unification, the input
fetch now always hits `assetService.getInputAssetsIncludingPublic` —
including against backends that may legitimately fail (pre-BE-786 OSS
without `/api/assets`, BE-934 partial deploys, transient network errors).

Switch to `Promise.allSettled` and per-branch soft-degrade. Each oracle
is independent; failure in one shouldn't cancel the other. On rejection,
return an empty list from that branch; abort errors stay silent, real
errors get a one-line console warning so we can spot them without
swallowing the rest of the verification.

Caller (`verifyMediaCandidates`) already treats an empty asset list as
"nothing matches this candidate," which surfaces affected candidates as
missing rather than silently dropping them via the previous toast-warn
path. False-positive missing is recoverable (user sees the issue in the
Errors tab); silent-fail was not.

Adversarial review (Codex) flagged the cascade. RFC §4's BEST EFFORT
framing for `file_path` already implies the contract has soft-fail
expectations, so this aligns the resolver shape with the RFC's stated
tolerance.

Removes the now-unused `abortSiblingsOnFailure` helper. Replaces the
abort-cascade regression test with two independence tests covering each
oracle failing in isolation.
coderabbitai[bot]
coderabbitai Bot previously approved these changes May 22, 2026
@dante01yoon dante01yoon marked this pull request as ready for review May 22, 2026 04:02
@dante01yoon dante01yoon requested a review from a team May 22, 2026 04:02
@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label May 22, 2026
…ests (FE-746)

Adds an e2e regression spec for the FE-746 behavior changes that unit
tests can only assert with mocks:

1. Case B union — a workflow stored before BE-933/934 keeps its widget
   value as a bare filename. Once the backend starts emitting `file_path`
   on the same asset (a namespace-rooted locator that diverges from
   `name`), detection must still match via the `name` arm. The
   pre-correction Case A early-return would false-negative here.
2. BE-933 hash-only registration — assets registered via
   POST /assets/from-hash come back with `file_path: null` and
   `display_name: null`. The legacy `name` arm has to keep working
   through the BE-792 deprecation window.
3. Negative path — a listing that does not cover the widget value via
   any key still surfaces the missing-media overlay. Guards against an
   accidental "match everything" regression when the early-return was
   removed.
4. Soft-degrade — when `/api/assets` returns 500 (pre-BE-786 OSS without
   the endpoint, partial BE-934 deploys, transient errors),
   `Promise.allSettled` lets the verifier finish and mark the candidate
   missing instead of leaving `isMissing` stuck at undefined behind a
   silent toast.

`Asset` from `@comfyorg/ingest-types` does not yet carry `file_path` /
`display_name` (regen is BE-932). Spec extends the type locally so the
mocked wire shape stays strongly typed.

The companion workflow asset is the minimum LoadImage graph needed to
fire the missing-media pipeline; widget value is a fixed sentinel
filename used by every test.

@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.

🧹 Nitpick comments (1)
browser_tests/tests/missingMediaAssetUnion.spec.ts (1)

16-19: ⚡ Quick win

Avoid brittle overlap when extending PostBEAsset

PostBEAsset is defined as Asset & { file_path?: string | null; display_name?: string | null }, but intersection types don’t “override” overlapping keys—they combine constraints, which can narrow unexpectedly if Asset regenerates with different nullability/optionality. Prefer Omit + re-add for stable “override-like” behavior.

♻️ Proposed fix
-type PostBEAsset = Asset & {
+type PostBEAsset = Omit<Asset, 'file_path' | 'display_name'> & {
   file_path?: string | null
   display_name?: string | null
 }
🤖 Prompt for 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.

In `@browser_tests/tests/missingMediaAssetUnion.spec.ts` around lines 16 - 19,
PostBEAsset currently intersects Asset with a new shape which can produce
brittle/contradictory constraints if Asset later defines file_path/display_name
differently; change the type definition for PostBEAsset to first omit the
overlapping keys from Asset (omit 'file_path' and 'display_name') and then
intersect that omitted Asset with your desired optional nullable properties so
the new optional/nullability for file_path and display_name reliably overrides
Asset's definition.
🤖 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.

Nitpick comments:
In `@browser_tests/tests/missingMediaAssetUnion.spec.ts`:
- Around line 16-19: PostBEAsset currently intersects Asset with a new shape
which can produce brittle/contradictory constraints if Asset later defines
file_path/display_name differently; change the type definition for PostBEAsset
to first omit the overlapping keys from Asset (omit 'file_path' and
'display_name') and then intersect that omitted Asset with your desired optional
nullable properties so the new optional/nullability for file_path and
display_name reliably overrides Asset's definition.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 488881c8-7b5d-44ab-a823-596c3be4bc42

📥 Commits

Reviewing files that changed from the base of the PR and between 076cba9 and 1510884.

📒 Files selected for processing (2)
  • browser_tests/assets/missing/fe746_load_image_bare_filename.json
  • browser_tests/tests/missingMediaAssetUnion.spec.ts
✅ Files skipped from review due to trivial changes (1)
  • browser_tests/assets/missing/fe746_load_image_bare_filename.json

coderabbitai[bot]
coderabbitai Bot previously approved these changes May 22, 2026
# Conflicts:
#	src/platform/assets/schemas/assetSchema.ts
#	src/platform/missingMedia/missingMediaAssetResolver.ts
#	src/platform/missingMedia/missingMediaScan.ts
@github-actions

github-actions Bot commented Jun 18, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 06/19/2026, 01:04:10 PM UTC

Links

📦 Bundle: 7.45 MB gzip 🔴 +711 B

Details

Summary

  • Raw size: 31.3 MB baseline 31.3 MB — 🔴 +1.25 kB
  • Gzip: 7.45 MB baseline 7.45 MB — 🔴 +711 B
  • Brotli: 5.1 MB baseline 5.1 MB — 🔴 +408 B
  • Bundles: 280 current • 280 baseline • 126 added / 126 removed

Category Glance
Utilities & Hooks 🔴 +1.24 kB (3.32 MB) · Graph Workspace 🔴 +11 B (1.25 MB) · Vendor & Third-Party ⚪ 0 B (15.3 MB) · Other ⚪ 0 B (10.4 MB) · Panels & Settings ⚪ 0 B (525 kB) · Data & Services ⚪ 0 B (268 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-Be0TR0Fl.js (removed) 46.7 kB 🟢 -46.7 kB 🟢 -13.7 kB 🟢 -11.9 kB
assets/index-CM91ZZsE.js (new) 46.7 kB 🔴 +46.7 kB 🔴 +13.7 kB 🔴 +11.9 kB

Status: 1 added / 1 removed

Graph Workspace — 1.25 MB (baseline 1.25 MB) • 🔴 +11 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-BUbk0Mx8.js (new) 1.25 MB 🔴 +1.25 MB 🔴 +266 kB 🔴 +200 kB
assets/GraphView-B5Oo0PKe.js (removed) 1.25 MB 🟢 -1.25 MB 🟢 -266 kB 🟢 -201 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-BUujLxO8.js (removed) 19.5 kB 🟢 -19.5 kB 🟢 -5.06 kB 🟢 -4.49 kB
assets/CloudSurveyView-DrskptTa.js (new) 19.5 kB 🔴 +19.5 kB 🔴 +5.06 kB 🔴 +4.49 kB
assets/CloudLoginView-DkA41Fwn.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.06 kB 🟢 -2.69 kB
assets/CloudLoginView-J9oqa_RB.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.06 kB 🔴 +2.68 kB
assets/CloudSignupView-C9r6YeZ7.js (new) 9.7 kB 🔴 +9.7 kB 🔴 +2.71 kB 🔴 +2.38 kB
assets/CloudSignupView-Oklh-5wS.js (removed) 9.7 kB 🟢 -9.7 kB 🟢 -2.71 kB 🟢 -2.38 kB
assets/CloudLayoutView-BFfqpRJc.js (removed) 9.36 kB 🟢 -9.36 kB 🟢 -2.34 kB 🟢 -2.02 kB
assets/CloudLayoutView-BjUj_ajN.js (new) 9.36 kB 🔴 +9.36 kB 🔴 +2.34 kB 🔴 +2.03 kB
assets/UserCheckView-CIfE4NPn.js (new) 8.8 kB 🔴 +8.8 kB 🔴 +2.22 kB 🔴 +1.94 kB
assets/UserCheckView-VjyjY6L_.js (removed) 8.8 kB 🟢 -8.8 kB 🟢 -2.22 kB 🟢 -1.93 kB
assets/UserSelectView-DcwIV1bZ.js (removed) 6 kB 🟢 -6 kB 🟢 -2.15 kB 🟢 -1.88 kB
assets/UserSelectView-DPamtkrY.js (new) 6 kB 🔴 +6 kB 🔴 +2.14 kB 🔴 +1.88 kB
assets/CloudForgotPasswordView-DN3qD2DB.js (removed) 5.15 kB 🟢 -5.15 kB 🟢 -1.75 kB 🟢 -1.54 kB
assets/CloudForgotPasswordView-DPdECXHh.js (new) 5.15 kB 🔴 +5.15 kB 🔴 +1.76 kB 🔴 +1.54 kB
assets/CloudAuthTimeoutView-B7PaPi5S.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.57 kB 🟢 -1.37 kB
assets/CloudAuthTimeoutView-C0jhOAz6.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.58 kB 🔴 +1.38 kB
assets/CloudSubscriptionRedirectView-BmO0grw1.js (removed) 4.3 kB 🟢 -4.3 kB 🟢 -1.56 kB 🟢 -1.38 kB
assets/CloudSubscriptionRedirectView-lUOfUmE0.js (new) 4.3 kB 🔴 +4.3 kB 🔴 +1.57 kB 🔴 +1.38 kB

Status: 9 added / 9 removed / 3 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-BGMpH-sA.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.96 kB 🟢 -8.82 kB
assets/KeybindingPanel-BycovTiV.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.96 kB 🔴 +8.83 kB
assets/SecretsPanel-CZoA2NMv.js (removed) 24.2 kB 🟢 -24.2 kB 🟢 -5.77 kB 🟢 -5.06 kB
assets/SecretsPanel-lw601bJg.js (new) 24.2 kB 🔴 +24.2 kB 🔴 +5.76 kB 🔴 +5.06 kB
assets/LegacyCreditsPanel-8w5a4m8D.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.52 kB 🟢 -4.85 kB
assets/LegacyCreditsPanel-CPqgCYk6.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.52 kB 🔴 +4.85 kB
assets/SubscriptionPanel-BrsFR5QT.js (new) 19.2 kB 🔴 +19.2 kB 🔴 +5.03 kB 🔴 +4.4 kB
assets/SubscriptionPanel-DZYDar8Q.js (removed) 19.2 kB 🟢 -19.2 kB 🟢 -5.03 kB 🟢 -4.42 kB
assets/AboutPanel-CHBiWICP.js (new) 11.7 kB 🔴 +11.7 kB 🔴 +3.22 kB 🔴 +2.88 kB
assets/AboutPanel-fmPsR5WM.js (removed) 11.7 kB 🟢 -11.7 kB 🟢 -3.22 kB 🟢 -2.88 kB
assets/ExtensionPanel-BBauPsg9.js (removed) 9.03 kB 🟢 -9.03 kB 🟢 -2.49 kB 🟢 -2.2 kB
assets/ExtensionPanel-C6jGNiH6.js (new) 9.03 kB 🔴 +9.03 kB 🔴 +2.5 kB 🔴 +2.2 kB
assets/ServerConfigPanel-CPdwKotP.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +1.98 kB 🔴 +1.76 kB
assets/ServerConfigPanel-DwiBtUVV.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -1.98 kB 🟢 -1.76 kB
assets/UserPanel-75BJUG9c.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.82 kB 🟢 -1.58 kB
assets/UserPanel-D6ZzWfpx.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/refreshRemoteConfig-BB1_ECUU.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.06 kB 🔴 +941 B
assets/refreshRemoteConfig-BXHasowP.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.06 kB 🟢 -945 B
assets/cloudRemoteConfig-CjvDev33.js (removed) 990 B 🟢 -990 B 🟢 -539 B 🟢 -462 B
assets/cloudRemoteConfig-tAjdQG9a.js (new) 990 B 🔴 +990 B 🔴 +543 B 🔴 +451 B
assets/refreshRemoteConfig-BTSPNjmQ.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -83 B
assets/refreshRemoteConfig-DLz5VvxR.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +81 B

Status: 11 added / 11 removed / 15 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-b37CDOaM.js (new) 3.69 kB 🔴 +3.69 kB 🔴 +1.3 kB 🔴 +1.14 kB
assets/auth-RSF5OJYc.js (removed) 3.69 kB 🟢 -3.69 kB 🟢 -1.31 kB 🟢 -1.14 kB
assets/usePostAuthRedirect-BEaKp3zv.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.28 kB 🔴 +1.11 kB
assets/usePostAuthRedirect-C9K64emA.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.28 kB 🟢 -1.11 kB
assets/SignUpForm-C0iw0lsv.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/SignUpForm-C8uSQrKS.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/UpdatePasswordContent-CH4GHMI5.js (new) 1.92 kB 🔴 +1.92 kB 🔴 +880 B 🔴 +769 B
assets/UpdatePasswordContent-DiezmGRj.js (removed) 1.92 kB 🟢 -1.92 kB 🟢 -876 B 🟢 -767 B
assets/authStore-Dcd3QuWg.js (removed) 130 B 🟢 -130 B 🟢 -109 B 🟢 -106 B
assets/authStore-DPrXpOVW.js (new) 130 B 🔴 +130 B 🔴 +109 B 🔴 +125 B
assets/auth-BER6aJOJ.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -89 B
assets/auth-MGuvHvIu.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +93 B

Status: 6 added / 6 removed / 3 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-D-3UDW32.js (removed) 86 kB 🟢 -86 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/ComfyHubPublishDialog-D7x5Mv0V.js (new) 86 kB 🔴 +86 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/useShareDialog-dqIJW-cu.js (new) 23.4 kB 🔴 +23.4 kB 🔴 +5.54 kB 🔴 +4.92 kB
assets/useShareDialog-YGSwoy3I.js (removed) 23.4 kB 🟢 -23.4 kB 🟢 -5.54 kB 🟢 -4.91 kB
assets/ComfyHubPublishDialog-Bp473Jep.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -90 B
assets/ComfyHubPublishDialog-kM7Yhbuy.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +88 B
assets/useSubscriptionDialog-B8FSbDme.js (removed) 110 B 🟢 -110 B 🟢 -102 B 🟢 -97 B
assets/useSubscriptionDialog-DP_2Gg-2.js (new) 110 B 🔴 +110 B 🔴 +102 B 🔴 +90 B

Status: 4 added / 4 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-DQNISo-K.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.82 kB 🔴 +3.42 kB
assets/ComfyQueueButton-IEFEHDxE.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.82 kB 🟢 -3.42 kB
assets/useTerminalTabs-Bc3JCbHN.js (new) 12.1 kB 🔴 +12.1 kB 🔴 +3.84 kB 🔴 +3.39 kB
assets/useTerminalTabs-ukuX9MK1.js (removed) 12.1 kB 🟢 -12.1 kB 🟢 -3.84 kB 🟢 -3.39 kB
assets/SubscribeButton-CCp1oi6Z.js (new) 2.44 kB 🔴 +2.44 kB 🔴 +1.05 kB 🔴 +941 B
assets/SubscribeButton-QQ393Qre.js (removed) 2.44 kB 🟢 -2.44 kB 🟢 -1.05 kB 🟢 -954 B
assets/cloudFeedbackTopbarButton-Bt4wPXqX.js (new) 829 B 🔴 +829 B 🔴 +496 B 🔴 +425 B
assets/cloudFeedbackTopbarButton-DAZA6yKx.js (removed) 829 B 🟢 -829 B 🟢 -498 B 🟢 -452 B
assets/ComfyQueueButton-BFrLRw2B.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +93 B
assets/ComfyQueueButton-DH69DXMA.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -92 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 268 kB (baseline 268 kB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/load3dService-BkZ0m_Lu.js (removed) 127 kB 🟢 -127 kB 🟢 -27.9 kB 🟢 -23.6 kB
assets/load3dService-IsGUmZ3q.js (new) 127 kB 🔴 +127 kB 🔴 +27.9 kB 🔴 +23.6 kB
assets/api-BdXhiPkt.js (new) 83.9 kB 🔴 +83.9 kB 🔴 +22.5 kB 🔴 +19.4 kB
assets/api-CY3AQQ6D.js (removed) 83.9 kB 🟢 -83.9 kB 🟢 -22.5 kB 🟢 -19.4 kB
assets/workflowShareService-Cj6XTOru.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/workflowShareService-yI34QMVX.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/keybindingService-BDx_V9KR.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/keybindingService-Da3xP1-J.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.22 kB
assets/releaseStore-D57I8n9h.js (new) 8.29 kB 🔴 +8.29 kB 🔴 +2.34 kB 🔴 +2.04 kB
assets/releaseStore-GOlQJiFY.js (removed) 8.29 kB 🟢 -8.29 kB 🟢 -2.33 kB 🟢 -2.05 kB
assets/extensionStore-DYNTK4qP.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.58 kB
assets/extensionStore-KIcY2v1L.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/userStore-DmkCtLhB.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +931 B 🔴 +825 B
assets/userStore-DSucRJAi.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -930 B 🟢 -830 B
assets/audioService-B53aHI83.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -864 B 🟢 -749 B
assets/audioService-WE5vJFNH.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +863 B 🔴 +748 B
assets/dialogService-BHanbkRn.js (new) 100 B 🔴 +100 B 🔴 +99 B 🔴 +95 B
assets/dialogService-CtKXVuvS.js (removed) 100 B 🟢 -100 B 🟢 -99 B 🟢 -90 B
assets/settingStore-CeQ92d6I.js (removed) 98 B 🟢 -98 B 🟢 -98 B 🟢 -90 B
assets/settingStore-CIq-WMIV.js (new) 98 B 🔴 +98 B 🔴 +98 B 🔴 +90 B
assets/assetsStore-C3q99lKS.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +96 B
assets/assetsStore-OfZKi6Ib.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -86 B
assets/releaseStore-BesflT0w.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -87 B
assets/releaseStore-D-pQC0iI.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +88 B
assets/api-DFoYmbvf.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-Dk6ZpVfG.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 13 added / 13 removed / 3 unchanged

Utilities & Hooks — 3.32 MB (baseline 3.32 MB) • 🔴 +1.24 kB

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/promotionUtils-DN_IDL2X.js (new) 2.97 MB 🔴 +2.97 MB 🔴 +686 kB 🔴 +518 kB
assets/promotionUtils-ClsQn5lv.js (removed) 2.97 MB 🟢 -2.97 MB 🟢 -686 kB 🟢 -517 kB
assets/useConflictDetection-C6WLGhLm.js (removed) 233 kB 🟢 -233 kB 🟢 -52 kB 🟢 -42.3 kB
assets/useConflictDetection-D5g_pp4r.js (new) 233 kB 🔴 +233 kB 🔴 +52 kB 🔴 +42.3 kB
assets/useLoad3d-Bc8qaYle.js (removed) 25.5 kB 🟢 -25.5 kB 🟢 -5.76 kB 🟢 -5.1 kB
assets/useLoad3d-CbqPVa_P.js (new) 25.5 kB 🔴 +25.5 kB 🔴 +5.76 kB 🔴 +5.1 kB
assets/useLoad3dViewer-BTdj2he7.js (new) 21.1 kB 🔴 +21.1 kB 🔴 +4.98 kB 🔴 +4.35 kB
assets/useLoad3dViewer-Db0DTpR5.js (removed) 21.1 kB 🟢 -21.1 kB 🟢 -4.98 kB 🟢 -4.35 kB
assets/useFeatureFlags-C38AoovV.js (removed) 5.37 kB 🟢 -5.37 kB 🟢 -1.65 kB 🟢 -1.41 kB
assets/useFeatureFlags-D5awBBE0.js (new) 5.37 kB 🔴 +5.37 kB 🔴 +1.65 kB 🔴 +1.41 kB
assets/useSessionCookie-BY66qKoH.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.15 kB 🔴 +981 B
assets/useSessionCookie-c_DgQpOP.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.15 kB 🟢 -977 B
assets/subscriptionCheckoutUtil-B7btPb1a.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.19 kB
assets/subscriptionCheckoutUtil-BZoKKnBz.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.19 kB
assets/assetPreviewUtil-D3HqD8a_.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1.01 kB 🟢 -881 B
assets/assetPreviewUtil-DGOhgnGC.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1.01 kB 🔴 +883 B
assets/useUpstreamValue-BeTakQxY.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -792 B 🟢 -707 B
assets/useUpstreamValue-DswBKhnv.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +793 B 🔴 +703 B
assets/useWorkspaceSwitch-B0326RhD.js (removed) 748 B 🟢 -748 B 🟢 -385 B 🟢 -338 B
assets/useWorkspaceSwitch-D0Cxr2rA.js (new) 748 B 🔴 +748 B 🔴 +386 B 🔴 +338 B
assets/useLoad3d-CII4YBqe.js (removed) 311 B 🟢 -311 B 🟢 -163 B 🟢 -149 B
assets/useLoad3d-TKZ_UmQA.js (new) 311 B 🔴 +311 B 🔴 +163 B 🔴 +147 B
assets/useSessionCookie-DaHD5O_w.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +84 B
assets/useSessionCookie-yMeER6O2.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -85 B
assets/useLoad3dViewer-CDu7dx38.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -87 B
assets/useLoad3dViewer-xzg9T9Yz.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +89 B
assets/useCurrentUser-C9Vsz9GW.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -82 B
assets/useCurrentUser-CiWCDXyD.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +84 B

Status: 14 added / 14 removed / 16 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-DMaPhtTf.js (removed) 118 kB 🟢 -118 kB 🟢 -30.5 kB 🟢 -25.8 kB
assets/core-e9WOaGMX.js (new) 118 kB 🔴 +118 kB 🔴 +30.4 kB 🔴 +25.8 kB
assets/WidgetSelect-BdnlSVg5.js (removed) 82.6 kB 🟢 -82.6 kB 🟢 -18.1 kB 🟢 -15.7 kB
assets/WidgetSelect-CtIRdMLf.js (new) 82.6 kB 🔴 +82.6 kB 🔴 +18.1 kB 🔴 +15.6 kB
assets/SubscriptionRequiredDialogContentWorkspace-Bm29TblN.js (new) 47.8 kB 🔴 +47.8 kB 🔴 +9.08 kB 🔴 +7.84 kB
assets/SubscriptionRequiredDialogContentWorkspace-CHDOc1D7.js (removed) 47.8 kB 🟢 -47.8 kB 🟢 -9.08 kB 🟢 -7.84 kB
assets/Load3DControls-B50w39p0.js (removed) 46.8 kB 🟢 -46.8 kB 🟢 -7.57 kB 🟢 -6.63 kB
assets/Load3DControls-CAQtaH7F.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +7.57 kB 🔴 +6.62 kB
assets/WorkspacePanelContent-aUL8z41C.js (removed) 33.3 kB 🟢 -33.3 kB 🟢 -6.96 kB 🟢 -6.17 kB
assets/WorkspacePanelContent-DOAIpMBB.js (new) 33.3 kB 🔴 +33.3 kB 🔴 +6.96 kB 🔴 +6.18 kB
assets/WidgetPainter-CJ0KJolD.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.86 kB 🔴 +7 kB
assets/WidgetPainter-Dj263cQ_.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.86 kB 🟢 -6.98 kB
assets/Load3dViewerContent-BG7CcFDO.js (removed) 30.9 kB 🟢 -30.9 kB 🟢 -6.3 kB 🟢 -5.47 kB
assets/Load3dViewerContent-DlHGP04-.js (new) 30.9 kB 🔴 +30.9 kB 🔴 +6.3 kB 🔴 +5.47 kB
assets/SubscriptionRequiredDialogContent-Bezy_LtI.js (new) 26.6 kB 🔴 +26.6 kB 🔴 +6.56 kB 🔴 +5.79 kB
assets/SubscriptionRequiredDialogContent-CqmW27Ez.js (removed) 26.6 kB 🟢 -26.6 kB 🟢 -6.56 kB 🟢 -5.79 kB
assets/WidgetImageCrop-BC30yGyY.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.74 kB 🟢 -5.04 kB
assets/WidgetImageCrop-DpUXDvhj.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.75 kB 🔴 +5.05 kB
assets/SubscriptionPanelContentWorkspace-BCIRIwJ5.js (new) 22.1 kB 🔴 +22.1 kB 🔴 +5.16 kB 🔴 +4.55 kB
assets/SubscriptionPanelContentWorkspace-CxdnxO2O.js (removed) 22.1 kB 🟢 -22.1 kB 🟢 -5.16 kB 🟢 -4.55 kB
assets/load3d-DYQVeI8e.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -5.18 kB 🟢 -4.49 kB
assets/load3d-QP7uFRwa.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +5.18 kB 🔴 +4.49 kB
assets/CurrentUserPopoverWorkspace-BgAF-6PI.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +4.68 kB 🔴 +4.18 kB
assets/CurrentUserPopoverWorkspace-DmZlNL8j.js (removed) 20.5 kB 🟢 -20.5 kB 🟢 -4.68 kB 🟢 -4.18 kB
assets/SignInContent-DflcJG1u.js (new) 19.9 kB 🔴 +19.9 kB 🔴 +4.99 kB 🔴 +4.36 kB
assets/SignInContent-FxWXUZ83.js (removed) 19.9 kB 🟢 -19.9 kB 🟢 -5 kB 🟢 -4.36 kB
assets/Load3D-bl5gN4ki.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.52 kB 🔴 +3.94 kB
assets/Load3D-Di_ZmJ-D.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.51 kB 🟢 -3.94 kB
assets/WidgetInputNumber-C8Q6aOiF.js (removed) 19 kB 🟢 -19 kB 🟢 -4.79 kB 🟢 -4.25 kB
assets/WidgetInputNumber-DHybC9or.js (new) 19 kB 🔴 +19 kB 🔴 +4.79 kB 🔴 +4.25 kB
assets/WidgetRecordAudio-CiTIGVzX.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.63 kB 🔴 +4.14 kB
assets/WidgetRecordAudio-Dc8-YIm5.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.63 kB 🟢 -4.13 kB
assets/WidgetRange-BpJ4OWHL.js (new) 16.2 kB 🔴 +16.2 kB 🔴 +4.17 kB 🔴 +3.73 kB
assets/WidgetRange-CCjPek08.js (removed) 16.2 kB 🟢 -16.2 kB 🟢 -4.17 kB 🟢 -3.72 kB
assets/WaveAudioPlayer-B2lKtHd6.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.48 kB 🔴 +3.05 kB
assets/WaveAudioPlayer-DcwZJtTP.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.49 kB 🟢 -3.05 kB
assets/WidgetCurve-C9u91Yc1.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.51 kB 🔴 +3.19 kB
assets/WidgetCurve-jzporxrN.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.5 kB 🟢 -3.16 kB
assets/TeamWorkspacesDialogContent-Dj9Q2e3D.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.01 kB 🟢 -2.67 kB
assets/TeamWorkspacesDialogContent-Drr-u8li.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.01 kB 🔴 +2.67 kB
assets/Load3DConfiguration-BeN1V1Xs.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +2.66 kB 🔴 +2.35 kB
assets/Load3DConfiguration-DGjLsXn8.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -2.67 kB 🟢 -2.35 kB
assets/nodeTemplates-BU5XM_3h.js (removed) 8.33 kB 🟢 -8.33 kB 🟢 -2.88 kB 🟢 -2.54 kB
assets/nodeTemplates-DD7QvQr9.js (new) 8.33 kB 🔴 +8.33 kB 🔴 +2.88 kB 🔴 +2.54 kB
assets/onboardingCloudRoutes-4auu6v04.js (new) 8.2 kB 🔴 +8.2 kB 🔴 +2.53 kB 🔴 +2.19 kB
assets/onboardingCloudRoutes-Bfi-2K97.js (removed) 8.2 kB 🟢 -8.2 kB 🟢 -2.53 kB 🟢 -2.2 kB
assets/NightlySurveyController-7wJxRm4X.js (new) 7.95 kB 🔴 +7.95 kB 🔴 +2.7 kB 🔴 +2.38 kB
assets/NightlySurveyController-BeJX3G-Y.js (removed) 7.95 kB 🟢 -7.95 kB 🟢 -2.7 kB 🟢 -2.4 kB
assets/InviteMemberDialogContent-CJtj1B0z.js (new) 7.03 kB 🔴 +7.03 kB 🔴 +2.14 kB 🔴 +1.85 kB
assets/InviteMemberDialogContent-DO0Udez7.js (removed) 7.03 kB 🟢 -7.03 kB 🟢 -2.13 kB 🟢 -1.85 kB
assets/WidgetWithControl-CVlaST_r.js (new) 6.3 kB 🔴 +6.3 kB 🔴 +2.54 kB 🔴 +2.23 kB
assets/WidgetWithControl-DC12V8vZ.js (removed) 6.3 kB 🟢 -6.3 kB 🟢 -2.54 kB 🟢 -2.25 kB
assets/load3dPreviewExtensions-DGYdqC3U.js (new) 5.38 kB 🔴 +5.38 kB 🔴 +1.75 kB 🔴 +1.55 kB
assets/load3dPreviewExtensions-WQzEhLQY.js (removed) 5.38 kB 🟢 -5.38 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-DWaXODeY.js (new) 5.19 kB 🔴 +5.19 kB 🔴 +1.83 kB 🔴 +1.59 kB
assets/CreateWorkspaceDialogContent-ndD9pVZH.js (removed) 5.19 kB 🟢 -5.19 kB 🟢 -1.82 kB 🟢 -1.59 kB
assets/missingModelDownload-Bdp5OpYi.js (removed) 5.07 kB 🟢 -5.07 kB 🟢 -1.98 kB 🟢 -1.72 kB
assets/missingModelDownload-Dv0IapZT.js (new) 5.07 kB 🔴 +5.07 kB 🔴 +1.98 kB 🔴 +1.72 kB
assets/FreeTierDialogContent-BNVvrf08.js (removed) 5.02 kB 🟢 -5.02 kB 🟢 -1.69 kB 🟢 -1.49 kB
assets/FreeTierDialogContent-DlEWhh3B.js (new) 5.02 kB 🔴 +5.02 kB 🔴 +1.69 kB 🔴 +1.49 kB
assets/EditWorkspaceDialogContent--xgYBxmo.js (removed) 5 kB 🟢 -5 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/EditWorkspaceDialogContent-M3Y8BjvZ.js (new) 5 kB 🔴 +5 kB 🔴 +1.8 kB 🔴 +1.56 kB
assets/WidgetTextarea-CDoJHJ5i.js (new) 4.86 kB 🔴 +4.86 kB 🔴 +1.9 kB 🔴 +1.67 kB
assets/WidgetTextarea-DYam5u4I.js (removed) 4.86 kB 🟢 -4.86 kB 🟢 -1.89 kB 🟢 -1.66 kB
assets/saveMesh-BxWXjH4B.js (removed) 4.79 kB 🟢 -4.79 kB 🟢 -1.55 kB 🟢 -1.36 kB
assets/saveMesh-CGuC3u--.js (new) 4.79 kB 🔴 +4.79 kB 🔴 +1.55 kB 🔴 +1.37 kB
assets/Preview3d-cUTdcxZY.js (removed) 4.59 kB 🟢 -4.59 kB 🟢 -1.43 kB 🟢 -1.23 kB
assets/Preview3d-Ne5kyrym.js (new) 4.59 kB 🔴 +4.59 kB 🔴 +1.43 kB 🔴 +1.23 kB
assets/ValueControlPopover-BzlC4x-2.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.59 kB 🔴 +1.42 kB
assets/ValueControlPopover-CYpbnzbm.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.58 kB 🟢 -1.41 kB
assets/CancelSubscriptionDialogContent-Cd1q0lfv.js (new) 4.54 kB 🔴 +4.54 kB 🔴 +1.66 kB 🔴 +1.44 kB
assets/CancelSubscriptionDialogContent-DLT3dAbx.js (removed) 4.54 kB 🟢 -4.54 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/tierBenefits-BOnq2vOx.js (new) 4.46 kB 🔴 +4.46 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/tierBenefits-FG-AUtre.js (removed) 4.46 kB 🟢 -4.46 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/DeleteWorkspaceDialogContent-0th2uBLE.js (removed) 3.91 kB 🟢 -3.91 kB 🟢 -1.47 kB 🟢 -1.27 kB
assets/DeleteWorkspaceDialogContent-Bb0TV6M0.js (new) 3.91 kB 🔴 +3.91 kB 🔴 +1.47 kB 🔴 +1.27 kB
assets/LeaveWorkspaceDialogContent-BxRLYUAv.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.42 kB 🟢 -1.22 kB
assets/LeaveWorkspaceDialogContent-YiNVAf2H.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.42 kB 🔴 +1.22 kB
assets/RemoveMemberDialogContent-BRrOWY55.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.37 kB 🟢 -1.18 kB
assets/RemoveMemberDialogContent-C89KzXL0.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/RevokeInviteDialogContent-C2EqmqO9.js (removed) 3.63 kB 🟢 -3.63 kB 🟢 -1.38 kB 🟢 -1.21 kB
assets/RevokeInviteDialogContent-FE_B9LAU.js (new) 3.63 kB 🔴 +3.63 kB 🔴 +1.38 kB 🔴 +1.21 kB
assets/InviteMemberUpsellDialogContent-1710dfaz.js (removed) 3.48 kB 🟢 -3.48 kB 🟢 -1.23 kB 🟢 -1.08 kB
assets/InviteMemberUpsellDialogContent-itATQGKK.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.24 kB 🔴 +1.1 kB
assets/Media3DTop-BAoe8YnW.js (removed) 3.26 kB 🟢 -3.26 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/Media3DTop-BxpRpC09.js (new) 3.26 kB 🔴 +3.26 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/GlobalToast-C8C3uZWz.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/GlobalToast-DvZ0053U.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.08 kB
assets/load3dAdvanced-CfbBJwIp.js (removed) 2.85 kB 🟢 -2.85 kB 🟢 -1.12 kB 🟢 -973 B
assets/load3dAdvanced-CwfnqbiI.js (new) 2.85 kB 🔴 +2.85 kB 🔴 +1.11 kB 🔴 +972 B
assets/SubscribeToRun-BIAApHfe.js (new) 2.53 kB 🔴 +2.53 kB 🔴 +1.1 kB 🔴 +974 B
assets/SubscribeToRun-ZoBQ84dC.js (removed) 2.53 kB 🟢 -2.53 kB 🟢 -1.1 kB 🟢 -984 B
assets/graphHasMissingNodes-CdOoaXE2.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +908 B 🔴 +792 B
assets/graphHasMissingNodes-DYR8i9yl.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -907 B 🟢 -792 B
assets/MediaAudioTop-BqnnjMSO.js (new) 1.67 kB 🔴 +1.67 kB 🔴 +838 B 🔴 +693 B
assets/MediaAudioTop-CQ83zNFd.js (removed) 1.67 kB 🟢 -1.67 kB 🟢 -838 B 🟢 -692 B
assets/CloudRunButtonWrapper-C2qxM0gL.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -549 B 🟢 -495 B
assets/CloudRunButtonWrapper-DcABXa11.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +549 B 🔴 +491 B
assets/cloudSessionCookie-2_dljUcV.js (removed) 991 B 🟢 -991 B 🟢 -466 B 🟢 -398 B
assets/cloudSessionCookie-Dgekor6b.js (new) 991 B 🔴 +991 B 🔴 +469 B 🔴 +412 B
assets/cloudBadges-_pghxSKb.js (new) 973 B 🔴 +973 B 🔴 +551 B 🔴 +501 B
assets/cloudBadges-BmXsukzB.js (removed) 973 B 🟢 -973 B 🟢 -546 B 🟢 -467 B
assets/cloudSubscription-DHUVnF4c.js (new) 820 B 🔴 +820 B 🔴 +456 B 🔴 +364 B
assets/cloudSubscription-DKQvIv_r.js (removed) 820 B 🟢 -820 B 🟢 -451 B 🟢 -363 B
assets/Load3DAdvanced-BpSGkUuO.js (removed) 813 B 🟢 -813 B 🟢 -454 B 🟢 -407 B
assets/Load3DAdvanced-CUJmpPxq.js (new) 813 B 🔴 +813 B 🔴 +455 B 🔴 +408 B
assets/nightlyBadges-Btwk3JNp.js (new) 464 B 🔴 +464 B 🔴 +306 B 🔴 +254 B
assets/nightlyBadges-CA2NvOhI.js (removed) 464 B 🟢 -464 B 🟢 -306 B 🟢 -253 B
assets/missingModelDownload-DgTMVJ-G.js (removed) 228 B 🟢 -228 B 🟢 -149 B 🟢 -129 B
assets/missingModelDownload-tQJXthtd.js (new) 228 B 🔴 +228 B 🔴 +150 B 🔴 +133 B
assets/SubscriptionPanelContentWorkspace-BW6UDL2u.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +90 B
assets/SubscriptionPanelContentWorkspace-htm8yQXc.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -84 B
assets/Load3dViewerContent-DoJyoONW.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +110 B
assets/Load3dViewerContent-SyMdeXVS.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -92 B
assets/Load3DAdvanced-BHkX7QCz.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +88 B
assets/Load3DAdvanced-CBQay1w_.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -89 B
assets/WidgetLegacy-3vSJ8L0k.js (new) 119 B 🔴 +119 B 🔴 +108 B 🔴 +94 B
assets/WidgetLegacy-BR9piI05.js (removed) 119 B 🟢 -119 B 🟢 -108 B 🟢 -96 B
assets/workflowDraftStoreV2-CAwRmbnH.js (new) 113 B 🔴 +113 B 🔴 +105 B 🔴 +117 B
assets/workflowDraftStoreV2-DkDUssPC.js (removed) 113 B 🟢 -113 B 🟢 -105 B 🟢 -111 B
assets/Load3D-CRMajMj3.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -86 B
assets/Load3D-Dzq8UBaf.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +94 B
assets/changeTracker-BbUFxJZU.js (removed) 93 B 🟢 -93 B 🟢 -95 B 🟢 -80 B
assets/changeTracker-BkP2CYyy.js (new) 93 B 🔴 +93 B 🔴 +95 B 🔴 +82 B

Status: 62 added / 62 removed / 89 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.4 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 49.2 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.8 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.0 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.9 MB heap
large-graph-pan: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 78.3 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.4 MB heap
minimap-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.7 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.5 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.9 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 45.7 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 151ms TBT · 76.1 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.9 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 162.3 MB heap
vue-large-graph-pan: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 44ms TBT · 174.2 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.4 MB heap

⚠️ 5 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-zoom-sweep: layout duration 1ms 1ms +18% ⚠️ z=2.2
large-graph-pan: style recalc duration 19ms 19ms +1% ⚠️ z=2.1
subgraph-idle: style recalc duration 8ms 12ms +50% ⚠️ z=2.2
workflow-execution: layout duration 1ms 2ms +60% ⚠️ z=3.6
workflow-execution: task duration 105ms 149ms +41% ⚠️ z=2.4
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 8ms 8ms -3% z=-3.4
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 11 10 -14% z=-2.9
canvas-idle: task duration 361ms 374ms +4% z=-0.7
canvas-idle: script duration 22ms 22ms +2% z=-1.4
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 53.7 MB 52.4 MB -2%
canvas-idle: DOM nodes 22 19 -14% z=-2.8
canvas-idle: event listeners 4 4 +0% z=-1.6
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=0.2
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 3ms 4ms +14% z=0.2
canvas-mouse-sweep: style recalc duration 31ms 38ms +22% z=-1.4
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 71 75 +6% z=-1.6
canvas-mouse-sweep: task duration 697ms 833ms +20% z=-0.5
canvas-mouse-sweep: script duration 105ms 130ms +23% z=-0.9
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 49.0 MB 49.2 MB +1%
canvas-mouse-sweep: DOM nodes 53 59 +10% z=-1.5
canvas-mouse-sweep: event listeners 4 4 +0% z=-1.1
canvas-zoom-sweep: avg frame time 17ms 17ms -0% z=-1.1
canvas-zoom-sweep: p95 frame time 17ms 17ms +0%
canvas-zoom-sweep: layout duration 1ms 1ms +18% ⚠️ z=2.2
canvas-zoom-sweep: style recalc duration 15ms 18ms +15% z=-0.9
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 301ms 344ms +14% z=0.7
canvas-zoom-sweep: script duration 23ms 28ms +24% z=0.4
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 57.5 MB 50.8 MB -12%
canvas-zoom-sweep: DOM nodes 78 -95 -221% z=-219.5
canvas-zoom-sweep: event listeners 19 -83 -534% z=-20.5
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 7ms 8ms +13% z=-2.8
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 12 12 -4% z=-3.2
dom-widget-clipping: task duration 332ms 384ms +16% z=1.2
dom-widget-clipping: script duration 54ms 55ms +3% z=-3.9
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 62.7 MB 53.0 MB -16%
dom-widget-clipping: DOM nodes 20 -135 -773% z=-110.4
dom-widget-clipping: event listeners 0 -100 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 8ms 9ms +13% z=-3.0
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 10 +0% z=-5.1
large-graph-idle: task duration 484ms 567ms +17% z=0.5
large-graph-idle: script duration 83ms 100ms +21% z=-0.2
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 59.1 MB 56.9 MB -4%
large-graph-idle: DOM nodes 20 -139 -795% z=-181.1
large-graph-idle: event listeners 4 -95 -2475% z=-19.9
large-graph-pan: avg frame time 17ms 17ms -0% z=-0.2
large-graph-pan: p95 frame time 17ms 17ms -0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 19ms 19ms +1% ⚠️ z=2.1
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 70 +1% z=-0.1
large-graph-pan: task duration 1008ms 1073ms +6% z=-0.2
large-graph-pan: script duration 363ms 373ms +3% z=-1.8
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 78.6 MB 78.3 MB -0%
large-graph-pan: DOM nodes 18 -130 -819% z=-90.0
large-graph-pan: event listeners 4 -95 -2463% z=-120.1
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms -0%
large-graph-zoom: layout duration 8ms 8ms -1%
large-graph-zoom: style recalc duration 19ms 20ms +5%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 65 66 +2%
large-graph-zoom: task duration 1230ms 1327ms +8%
large-graph-zoom: script duration 459ms 468ms +2%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 64.8 MB 66.4 MB +2%
large-graph-zoom: DOM nodes 14 14 +0%
large-graph-zoom: event listeners 8 8 +0%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.4
minimap-idle: p95 frame time 17ms 17ms +1%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 8ms 8ms -1% z=-1.7
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 9 -15% z=-1.6
minimap-idle: task duration 486ms 549ms +13% z=0.4
minimap-idle: script duration 76ms 95ms +25% z=-0.3
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 61.6 MB 58.7 MB -5%
minimap-idle: DOM nodes 20 -142 -810% z=-117.8
minimap-idle: event listeners 4 -98 -2538% z=-154.6
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 11ms -0% z=-2.0
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 +0% z=-1.6
subgraph-dom-widget-clipping: task duration 356ms 366ms +3% z=-0.7
subgraph-dom-widget-clipping: script duration 125ms 119ms -5% z=-1.5
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 50.7 MB 56.5 MB +11%
subgraph-dom-widget-clipping: DOM nodes 20 20 +0% z=-1.9
subgraph-dom-widget-clipping: event listeners 6 7 +17% z=-1.6
subgraph-idle: avg frame time 17ms 17ms +0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms -0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 8ms 12ms +50% ⚠️ z=2.2
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 11 +5% z=-0.6
subgraph-idle: task duration 341ms 378ms +11% z=0.3
subgraph-idle: script duration 12ms 20ms +61% z=-0.2
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 53.9 MB 53.9 MB +0%
subgraph-idle: DOM nodes 20 21 +5% z=-0.5
subgraph-idle: event listeners 4 4 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.5
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 4ms 5ms +17% z=-0.1
subgraph-mouse-sweep: style recalc duration 34ms 38ms +14% z=-1.3
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 77 77 -1% z=-1.9
subgraph-mouse-sweep: task duration 625ms 733ms +17% z=-0.5
subgraph-mouse-sweep: script duration 84ms 94ms +13% z=-1.0
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 45.8 MB 45.7 MB -0%
subgraph-mouse-sweep: DOM nodes 65 63 -3% z=-1.8
subgraph-mouse-sweep: event listeners 4 4 +0% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +0%
subgraph-transition-enter: layout duration 13ms 11ms -11%
subgraph-transition-enter: style recalc duration 27ms 24ms -10%
subgraph-transition-enter: layout count 5 4 -20%
subgraph-transition-enter: style recalc count 17 16 -6%
subgraph-transition-enter: task duration 699ms 695ms -1%
subgraph-transition-enter: script duration 25ms 27ms +7%
subgraph-transition-enter: TBT 141ms 151ms +7%
subgraph-transition-enter: heap used 76.0 MB 76.1 MB +0%
subgraph-transition-enter: DOM nodes 13833 13833 +0%
subgraph-transition-enter: event listeners 2527 2527 +0%
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms -1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 57ms 59ms +3%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 251 252 +0%
viewport-pan-sweep: task duration 3523ms 4112ms +17%
viewport-pan-sweep: script duration 1138ms 1386ms +22%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 65.0 MB 68.9 MB +6%
viewport-pan-sweep: DOM nodes 20 21 +5%
viewport-pan-sweep: event listeners 20 20 +0%
vue-large-graph-idle: avg frame time 17ms 17ms -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 13037ms 11337ms -13%
vue-large-graph-idle: script duration 581ms 563ms -3%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 161.4 MB 162.3 MB +1%
vue-large-graph-idle: DOM nodes -3306 -3306 +0%
vue-large-graph-idle: event listeners -16472 -16469 -0%
vue-large-graph-pan: avg frame time 17ms 17ms -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 20ms 19ms -1%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 75 65 -13%
vue-large-graph-pan: task duration 15176ms 13549ms -11%
vue-large-graph-pan: script duration 839ms 856ms +2%
vue-large-graph-pan: TBT 35ms 44ms +24%
vue-large-graph-pan: heap used 157.7 MB 174.2 MB +10%
vue-large-graph-pan: DOM nodes -3306 -3308 +0%
vue-large-graph-pan: event listeners -16468 -16471 +0%
workflow-execution: avg frame time 17ms 17ms -0% z=0.1
workflow-execution: p95 frame time 17ms 17ms -1%
workflow-execution: layout duration 1ms 2ms +60% ⚠️ z=3.6
workflow-execution: style recalc duration 22ms 25ms +14% z=0.2
workflow-execution: layout count 5 6 +10% z=1.0
workflow-execution: style recalc count 18 17 -6% z=-0.4
workflow-execution: task duration 105ms 149ms +41% ⚠️ z=2.4
workflow-execution: script duration 16ms 17ms +4% z=-4.1
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 62.1 MB 55.4 MB -11%
workflow-execution: DOM nodes 166 37 -78% z=-17.4
workflow-execution: event listeners 69 -37 -153% z=-20.2
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-06-19T13:12:29.250Z",
  "gitSha": "08fc0f06ccaa68def5000e6bf6e13417a66f4382",
  "branch": "jaewon/fe-746-l3-fe-migrate-missingmediascants-to-unified-file_path-based",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2014.8130000000037,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 6.446999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 356.296,
      "heapDeltaBytes": -2419964,
      "heapUsedBytes": 56370352,
      "domNodes": 16,
      "jsHeapTotalBytes": 26738688,
      "scriptDurationMs": 17.692999999999998,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-idle",
      "durationMs": 2023.949000000016,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.063000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 391.36299999999994,
      "heapDeltaBytes": -3111960,
      "heapUsedBytes": 53557340,
      "domNodes": 22,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 26.782,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1978.5759999999755,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 42.278000000000006,
      "layouts": 12,
      "layoutDurationMs": 4.0169999999999995,
      "taskDurationMs": 903.4649999999999,
      "heapDeltaBytes": -7108624,
      "heapUsedBytes": 51770068,
      "domNodes": 59,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 144.012,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1769.7679999999991,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 34.172999999999995,
      "layouts": 12,
      "layoutDurationMs": 3.274,
      "taskDurationMs": 763.296,
      "heapDeltaBytes": -7068340,
      "heapUsedBytes": 51474276,
      "domNodes": 58,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 115.627,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1741.2969999999746,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 18.287000000000003,
      "layouts": 6,
      "layoutDurationMs": 0.7840000000000001,
      "taskDurationMs": 367.541,
      "heapDeltaBytes": -5342124,
      "heapUsedBytes": 48489964,
      "domNodes": -268,
      "jsHeapTotalBytes": 15642624,
      "scriptDurationMs": 28.766999999999996,
      "eventListeners": -184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1724.4859999999562,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 17.308,
      "layouts": 6,
      "layoutDurationMs": 0.702,
      "taskDurationMs": 319.94,
      "heapDeltaBytes": 1240652,
      "heapUsedBytes": 58052568,
      "domNodes": 79,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 27.837999999999997,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 644.3219999999883,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.132,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 427.70399999999995,
      "heapDeltaBytes": -23393568,
      "heapUsedBytes": 45473080,
      "domNodes": -291,
      "jsHeapTotalBytes": 6729728,
      "scriptDurationMs": 54.492999999999995,
      "eventListeners": -201,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 579.1409999999928,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 8.245,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 339.80699999999996,
      "heapDeltaBytes": 7333728,
      "heapUsedBytes": 65661588,
      "domNodes": 22,
      "jsHeapTotalBytes": 18612224,
      "scriptDurationMs": 56.06700000000001,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2076.116000000013,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.098,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 591.8399999999999,
      "heapDeltaBytes": -25029692,
      "heapUsedBytes": 57417692,
      "domNodes": -300,
      "jsHeapTotalBytes": 4820992,
      "scriptDurationMs": 103.657,
      "eventListeners": -194,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2012.8459999999677,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.057,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 542.418,
      "heapDeltaBytes": -8719000,
      "heapUsedBytes": 61813240,
      "domNodes": 22,
      "jsHeapTotalBytes": 10891264,
      "scriptDurationMs": 97.241,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2116.0379999999464,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 19.188,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1069.213,
      "heapDeltaBytes": 11943072,
      "heapUsedBytes": 81131212,
      "domNodes": -277,
      "jsHeapTotalBytes": -1531904,
      "scriptDurationMs": 368.11100000000005,
      "eventListeners": -195,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2087.7269999999726,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 18.779999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1076.6989999999998,
      "heapDeltaBytes": 10334868,
      "heapUsedBytes": 83079172,
      "domNodes": 18,
      "jsHeapTotalBytes": 11591680,
      "scriptDurationMs": 377.613,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3150.367000000017,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 19.402999999999995,
      "layouts": 60,
      "layoutDurationMs": 7.8759999999999994,
      "taskDurationMs": 1331.7590000000002,
      "heapDeltaBytes": 15105736,
      "heapUsedBytes": 70576548,
      "domNodes": 12,
      "jsHeapTotalBytes": 7077888,
      "scriptDurationMs": 467.5969999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3161.185000000046,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 20.736,
      "layouts": 60,
      "layoutDurationMs": 8.050999999999998,
      "taskDurationMs": 1322.343,
      "heapDeltaBytes": -5143512,
      "heapUsedBytes": 68735868,
      "domNodes": 16,
      "jsHeapTotalBytes": 8531968,
      "scriptDurationMs": 469.34800000000007,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2002.615999999989,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.123000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 563.1270000000001,
      "heapDeltaBytes": -9332176,
      "heapUsedBytes": 64546364,
      "domNodes": 18,
      "jsHeapTotalBytes": 7745536,
      "scriptDurationMs": 100.81899999999999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2026.6009999999142,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.242,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 533.894,
      "heapDeltaBytes": -3315728,
      "heapUsedBytes": 58622100,
      "domNodes": -302,
      "jsHeapTotalBytes": -540672,
      "scriptDurationMs": 89.108,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 547.3100000000386,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.926,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 367.736,
      "heapDeltaBytes": 7691928,
      "heapUsedBytes": 66439328,
      "domNodes": 20,
      "jsHeapTotalBytes": 19136512,
      "scriptDurationMs": 123.382,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 562.0910000000094,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 10.798,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 363.969,
      "heapDeltaBytes": -11077284,
      "heapUsedBytes": 52076432,
      "domNodes": 20,
      "jsHeapTotalBytes": 16515072,
      "scriptDurationMs": 114.604,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2030.7050000000118,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 16.019,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 386.947,
      "heapDeltaBytes": -2529816,
      "heapUsedBytes": 56386796,
      "domNodes": 22,
      "jsHeapTotalBytes": 26214400,
      "scriptDurationMs": 17.43,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2011.985999999979,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.204,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 368.57099999999997,
      "heapDeltaBytes": -2155836,
      "heapUsedBytes": 56699904,
      "domNodes": 20,
      "jsHeapTotalBytes": 26214400,
      "scriptDurationMs": 21.991,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1719.268999999997,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 39.184999999999995,
      "layouts": 16,
      "layoutDurationMs": 4.8260000000000005,
      "taskDurationMs": 734.431,
      "heapDeltaBytes": -11040216,
      "heapUsedBytes": 47763528,
      "domNodes": 63,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 95.111,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1711.026000000004,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 37.40200000000001,
      "layouts": 16,
      "layoutDurationMs": 4.538,
      "taskDurationMs": 731.3199999999999,
      "heapDeltaBytes": -10657088,
      "heapUsedBytes": 48021584,
      "domNodes": 63,
      "jsHeapTotalBytes": 26476544,
      "scriptDurationMs": 93.066,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 898.0589999999893,
      "styleRecalcs": 16,
      "styleRecalcDurationMs": 24.432999999999996,
      "layouts": 4,
      "layoutDurationMs": 11.216000000000001,
      "taskDurationMs": 695.0300000000001,
      "heapDeltaBytes": 4366600,
      "heapUsedBytes": 79786556,
      "domNodes": 13833,
      "jsHeapTotalBytes": 17825792,
      "scriptDurationMs": 26.796,
      "eventListeners": 2527,
      "totalBlockingTimeMs": 151,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8198.935000000005,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 59.736,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4253.659000000001,
      "heapDeltaBytes": 4346020,
      "heapUsedBytes": 74520072,
      "domNodes": 20,
      "jsHeapTotalBytes": 25747456,
      "scriptDurationMs": 1455.3700000000001,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8226.949999999988,
      "styleRecalcs": 252,
      "styleRecalcDurationMs": 57.28399999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3971.1580000000004,
      "heapDeltaBytes": -100816,
      "heapUsedBytes": 69985944,
      "domNodes": 22,
      "jsHeapTotalBytes": 19980288,
      "scriptDurationMs": 1315.7859999999998,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 11906.45600000005,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11892.967999999997,
      "heapDeltaBytes": -39477972,
      "heapUsedBytes": 170487932,
      "domNodes": -3308,
      "jsHeapTotalBytes": 21991424,
      "scriptDurationMs": 560.229,
      "eventListeners": -16472,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 10796.127999999953,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 10780.414999999999,
      "heapDeltaBytes": -16239952,
      "heapUsedBytes": 169819252,
      "domNodes": -3304,
      "jsHeapTotalBytes": 20185088,
      "scriptDurationMs": 565.581,
      "eventListeners": -16466,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.216666666666665,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 13626.798000000008,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 19.441000000000013,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13609.033999999998,
      "heapDeltaBytes": -23710560,
      "heapUsedBytes": 184785252,
      "domNodes": -3308,
      "jsHeapTotalBytes": 17711104,
      "scriptDurationMs": 841.676,
      "eventListeners": -16470,
      "totalBlockingTimeMs": 38,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 13508.115999999973,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 19.128000000000007,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13488.428,
      "heapDeltaBytes": -25129964,
      "heapUsedBytes": 180583252,
      "domNodes": -3308,
      "jsHeapTotalBytes": 20594688,
      "scriptDurationMs": 870.1239999999999,
      "eventListeners": -16472,
      "totalBlockingTimeMs": 49,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 510.0460000000453,
      "styleRecalcs": 19,
      "styleRecalcDurationMs": 26.476,
      "layouts": 6,
      "layoutDurationMs": 2.449,
      "taskDurationMs": 176.45799999999997,
      "heapDeltaBytes": -18164732,
      "heapUsedBytes": 51290236,
      "domNodes": -81,
      "jsHeapTotalBytes": 438272,
      "scriptDurationMs": 17.358999999999998,
      "eventListeners": -142,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 459.67700000005607,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 23.023000000000003,
      "layouts": 5,
      "layoutDurationMs": 1.681,
      "taskDurationMs": 120.678,
      "heapDeltaBytes": 5123404,
      "heapUsedBytes": 64966676,
      "domNodes": 155,
      "jsHeapTotalBytes": 2883584,
      "scriptDurationMs": 16.45,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

🎭 Playwright: ❌ 1667 passed, 2 failed · 1 flaky

❌ Failed Tests

📊 Browser Reports
  • chromium: View Report (✅ 1646 / ❌ 2 / ⚠️ 1 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 18 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

@github-actions

Copy link
Copy Markdown

🎭 Playwright: ⏳ Running...

coderabbitai[bot]
coderabbitai Bot previously approved these changes Jun 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants