Skip to content

test(e2e): add semantic live progress phases#7100

Open
cjagwani wants to merge 24 commits into
mainfrom
codex/diagnose-agent-turn-latency-hang
Open

test(e2e): add semantic live progress phases#7100
cjagwani wants to merge 24 commits into
mainfrom
codex/diagnose-agent-turn-latency-hang

Conversation

@cjagwani

@cjagwani cjagwani commented Jul 17, 2026

Copy link
Copy Markdown
Collaborator

Summary

Live E2E jobs now report the semantic phase they are executing without repeating Vitest's test-level start, identity, elapsed time, or completion output. Every live test declares an individualized ordered plan, and each completed phase records its outcome and duration so a stalled or failed matrix job shows where time was spent.

Related Issue

Part of #7101

Changes

  • Instrument all 121 collected live E2E cases across 80 live entries (79 test implementations plus one bootstrap workflow forwarder) with ordered, test-specific semantic phases.
  • Extend the shared E2E fixture to print low-noise phase transitions with passed, failed, or skipped outcomes and per-phase durations, then append a harness-owned resource-release phase so cleanup hangs and failures are timed independently.
  • Preserve the originating phase for hard failures, soft assertions, and skips; persist the complete timeline, target, and shard identity in test-progress.json, including the dedicated skill-agent job upload.
  • Emit secret-safe stall evidence after five minutes and every ten minutes thereafter, including phase/output age, bounded command activity, process memory, free memory, disk, load, and the existing runner-pressure snapshot.
  • Add a collection-only checker and pre-commit gate that require every live test to use the shared fixture, declare a valid semantic plan, enter every later phase, and keep transitions scoped to their owning test, including siblings and repeated registrations that share one plan. The checker redirects the one compiled-artifact live import to source only while collecting, so it works in a clean checkout without running live bodies; fixture-backed negative coverage verifies missing metadata plus nonliteral, undeclared, and sibling-owned transitions are rejected.
  • Keep the historical runtime audit and matrix progress-summary upload from the earlier PR commits so maintainers can rank slow or unreliable targets and inspect phase artifacts across shards.
  • Document phase authoring, cleanup ownership, outcome/duration semantics, stall output, artifacts, and runtime-audit usage in the contributor and E2E guides.

Type of Change

  • Code change (feature, bug fix, or refactor)
  • Code change with doc updates
  • Doc only (prose changes, no code sample modifications)
  • Doc only (includes code sample changes)

Quality Gates

  • Tests added or updated for changed behavior
  • Existing tests cover changed behavior — justification:
  • Tests not applicable — justification:
  • Docs updated for user-facing behavior changes
  • Docs not applicable — justification:
  • Sensitive paths changed (security, policy, credentials, preflight, onboarding, inference, runner, sandbox, or messaging)
  • Sensitive-path review completed or maintainer-approved waiver recorded — reviewer/approval link/justification:
  • Non-success, skipped, or missing CI check accepted by maintainer — check name, approval link, and follow-up issue:

Verification

  • PR description includes a Signed-off-by: line and every commit appears as Verified in GitHub
  • Normal pre-commit, commit-msg, and pre-push hooks passed, or npm run check:diff passed when hooks were skipped or unavailable
  • Targeted behavior tests pass for the current change set, or tests are marked not applicable above — 4 focused final-head E2E-support files, 28 tests passed; semantic collection audit passed for 121 tests across 80 live entries; mock/live parity, conditional-growth, npm run typecheck:cli, project membership, source-shape, file-size, changed-file Biome, and git diff --check passed
  • Applicable broad gate passed — npm test for broad runtime/test-harness changes; npm run check for repo-wide validation/coverage changes — command/result: required CI is authoritative for the broad sharded suite
  • Quality Gates section completed with required justifications or waivers
  • No secrets, API keys, or credentials committed
  • npm run docs builds without warnings (doc changes only) — validation passed; Fern reported 2 existing warnings
  • Doc pages follow the style guide (doc changes only)
  • New doc pages include SPDX header and frontmatter (new pages only)

Signed-off-by: Charan Jagwani cjagwani@nvidia.com

Summary by CodeRabbit

  • New Features

    • Live E2E runs now emit ordered phase markers with clear outcomes and durations, plus periodic stall diagnostics.
    • Each live E2E run produces a test-progress.json artifact (including target/shard metadata when available).
    • Added semantic phase-plan validation to prevent missing/invalid phase coverage before running.
    • Added runtime auditing to rank captured runs by median/p95/variability and identify the slowest phase.
  • Documentation

    • Expanded E2E fixture and workflow guidance for phase reporting, diagnostics, and runtime analysis.
  • Tests

    • Added automated checks for phase validity, progress outcomes, runtime auditing, and artifact upload requirements.

@cjagwani cjagwani self-assigned this Jul 17, 2026
@copy-pr-bot

copy-pr-bot Bot commented Jul 17, 2026

Copy link
Copy Markdown

Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually.

Contributors can view more details about this message here.

@coderabbitai

coderabbitai Bot commented Jul 17, 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

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: e8cb90e4-fa45-40ae-9c62-bcef1ad3c4b8

📥 Commits

Reviewing files that changed from the base of the PR and between 6dd4e87 and 9601701.

📒 Files selected for processing (2)
  • test/e2e/mock-parity.json
  • test/e2e/support/e2e-semantic-phase-check.test.ts
🚧 Files skipped from review as they are similar to previous changes (2)
  • test/e2e/mock-parity.json
  • test/e2e/support/e2e-semantic-phase-check.test.ts

📝 Walkthrough

Walkthrough

This PR adds shared E2E phase tracking, shell instrumentation, persisted test-progress.json summaries, runtime aggregation, semantic phase validation, CI artifact publication, and migration of live tests to declared phase plans.

Changes

E2E runtime observability

Layer / File(s) Summary
Shared progress tracking
test/e2e/fixtures/progress.ts, test/e2e/fixtures/e2e-test.ts, test/e2e/support/*progress*
Adds validated phase plans, phase timing, stall diagnostics, resource evidence, output tracking, teardown outcomes, and persisted progress summaries.
Shell activity and live-test integration
test/e2e/fixtures/shell-probe.ts, test/e2e/live/*, test/e2e/support/*
Threads progress reporting through shell commands, retries, cleanup, inference flows, and the live E2E suite.
Semantic phase validation
tools/e2e/check-semantic-phases.mts, vitest.config.ts, .pre-commit-config.yaml, package.json
Adds static collection and validation of phase metadata, phase calls, fixture imports, and scoped test coverage.
Runtime audit and artifact publication
scripts/audit-test-runtime.mts, .github/workflows/e2e.yaml, tools/e2e/*, CONTRIBUTING.md, test/e2e/README.md, test/e2e/docs/README.md
Adds progress artifact discovery, validation, percentile aggregation, Markdown output, CLI scripts, workflow uploads, boundary checks, documentation, and audit tests.

Estimated code review effort: 4 (Complex) | ~60 minutes

Sequence Diagram(s)

sequenceDiagram
  participant LiveE2ETest
  participant TestProgress
  participant ShellProbe
  participant E2EArtifact
  participant RuntimeAudit
  LiveE2ETest->>TestProgress: declare and advance semantic phases
  LiveE2ETest->>ShellProbe: execute instrumented command
  ShellProbe-->>TestProgress: report output and activity
  TestProgress->>E2EArtifact: write test-progress.json
  RuntimeAudit->>E2EArtifact: discover and validate summaries
  RuntimeAudit-->>RuntimeAudit: rank p95, variability, max, and slowest phase
Loading

Possibly related issues

Possibly related PRs

  • NVIDIA/NemoClaw#6672: Both changes integrate capabilities through the shared E2E fixture and Hermes live test.
  • NVIDIA/NemoClaw#6969: Both coordinate CI shard identity with live E2E artifact and progress metadata.

Suggested labels: chore

Suggested reviewers: cv

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 2.17% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title is concise and accurately summarizes the main change: adding semantic live progress phases to E2E tests.
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.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch codex/diagnose-agent-turn-latency-hang

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

@github-code-quality

github-code-quality Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

Code Coverage Overview

Languages: TypeScript

TypeScript / code-coverage/plugin

The overall coverage in commit 9601701 in the codex/diagnose-agent... branch remains at 96%, unchanged from commit ac120c8 in the main branch.

TypeScript / code-coverage/cli

The overall coverage in commit 9601701 in the codex/diagnose-agent... branch remains at 80%, unchanged from commit ad26c30 in the main branch.

Show a code coverage summary of the most impacted files.
File main ad26c30 codex/diagnose-agent... 9601701 +/-
src/lib/sandbox...-diagnostics.ts 93% 0% -93%
src/lib/actions...annel-status.ts 93% 91% -2%
src/lib/actions...test-helpers.ts 65% 63% -2%
src/lib/actions...tatus-config.ts 96% 96% 0%
src/lib/messagi.../hook-runner.ts 100% 100% 0%
src/lib/sandbox...rce-identity.ts 91% 91% 0%
src/lib/messagi...onfig-parser.ts 50% 100% +50%
src/lib/messagi...-health-eval.ts 0% 88% +88%
src/lib/messagi...tatus-health.ts 0% 92% +92%
src/lib/messagi.../hooks/index.ts 0% 100% +100%

Updated July 20, 2026 19:47 UTC

@github-actions

github-actions Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

PR Review Advisor — Informational

Advisor assessment: Informational / high confidence
Next action: No advisor follow-up needed.
Findings: 0 blockers · 0 warnings · 0 suggestions
Status: No actionable findings remain in the canonical review ledger.

Model lanes

  • GPT-5.6 Terra (primary): Completed · high confidence · 0 blockers · 0 warnings · 0 suggestions
  • Nemotron 3 Ultra (second opinion): Failed after a partial review · low confidence · 0 blockers · 1 warning · 0 suggestions

Nemotron output stays in workflow artifacts and does not change the assessment above.

E2E guidance

Advisory only. E2E / PR Gate selects and runs jobs independently.

Recommended E2E: cloud-onboard, credential-sanitization, security-posture, agent-turn-latency, bedrock-runtime-compatible-anthropic, brave-search, channels-add-remove, channels-stop-start, cloud-inference, common-egress-agent, concurrent-gateway-ports, credential-migration, cron-preflight-inference-local, device-auth-health, diagnostics, docs-validation, double-onboard, full-e2e, gateway-guard-recovery, gateway-health-honest (+53 more)

1 optional E2E recommendation
  • e2e-all

Workflow run details

This automated review informs maintainers. Warnings and suggestions do not require a response. A maintainer decides whether to merge.

@wscurran wscurran added area: ci CI workflows, checks, release automation, or GitHub Actions area: e2e End-to-end tests, nightly failures, or validation infrastructure feature PR adds or expands user-visible functionality labels Jul 17, 2026
@github-actions

Copy link
Copy Markdown
Contributor

@cjagwani cjagwani changed the title test(e2e): expose agent turn latency progress test(e2e): add shared progress diagnostics and runtime audit Jul 20, 2026
@cjagwani
cjagwani marked this pull request as ready for review July 20, 2026 14:53
@cjagwani
cjagwani marked this pull request as draft July 20, 2026 15:01
@cjagwani
cjagwani marked this pull request as ready for review July 20, 2026 15:02
@cjagwani
cjagwani marked this pull request as draft July 20, 2026 15:03

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 2

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

Inline comments:
In `@scripts/audit-test-runtime.mts`:
- Around line 99-100: Update scripts/audit-test-runtime.mts at lines 99-100 to
use a dedicated median helper that averages the two middle sorted durations for
even-sized run sets, while preserving the existing percentile calculation for
p95. Update test/e2e/support/test-runtime-audit.test.ts at lines 56-82 to expect
the two-run median, variability, and formatted row as 30.0s, 20.0s, and 20.0s.

In `@test/e2e/live/agent-turn-latency.test.ts`:
- Around line 50-93: Remove the explicit progress.stop() call associated with
the cleanup setup around cleanup.trackDisposable. Let cleanup.runAll() execute
while progress remains active so cleanup phases and output are preserved,
relying on the progress fixture’s finally block to stop itself.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 9573d819-5d22-4bb1-a36a-ae48ae47dc38

📥 Commits

Reviewing files that changed from the base of the PR and between 949b5f9 and e743391.

📒 Files selected for processing (17)
  • CONTRIBUTING.md
  • package.json
  • scripts/audit-test-runtime.mts
  • test/e2e/README.md
  • test/e2e/docs/README.md
  • test/e2e/fixtures/e2e-test.ts
  • test/e2e/fixtures/progress.ts
  • test/e2e/fixtures/shell-probe.ts
  • test/e2e/live/agent-turn-latency-helpers.ts
  • test/e2e/live/agent-turn-latency.test.ts
  • test/e2e/live/rebuild-hermes-progress.ts
  • test/e2e/live/rebuild-hermes.test.ts
  • test/e2e/support/agent-turn-latency-progress.test.ts
  • test/e2e/support/e2e-fixture-context.test.ts
  • test/e2e/support/rebuild-hermes-progress.test.ts
  • test/e2e/support/rebuild-hermes-timing.test.ts
  • test/e2e/support/test-runtime-audit.test.ts
💤 Files with no reviewable changes (1)
  • test/e2e/live/rebuild-hermes-progress.ts

Comment thread scripts/audit-test-runtime.mts Outdated
Comment thread test/e2e/live/agent-turn-latency.test.ts
@cjagwani
cjagwani marked this pull request as ready for review July 20, 2026 15:10
@cjagwani

Copy link
Copy Markdown
Collaborator Author

Fresh advisor follow-up: PRA-1 is addressed in aecce15 with a fixture-backed teardown test that verifies a completed version-1 summary, scenario, target ID, shard ID, duration, and final phase. PRA-2 does not reproduce: the live matrix sets E2E_ARTIFACT_DIR to e2e-artifacts/live (not the target directory), liveTargetTestName(target) is exactly target.id, and createArtifactSink joins those into e2e-artifacts/live/${matrix.id}/test-progress.json. The existing artifact-path test also asserts that exact root. Changing the upload contract to */test-progress.json would therefore miss the registry target artifact.

@cjagwani

Copy link
Copy Markdown
Collaborator Author

The growth-guardrail failure is addressed in 950fd9c: the fixture regression now uses Vitest environment stubs and contains no added if statements. The focused fixture test and the repository test-conditionals scan both pass.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

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

Inline comments:
In `@test/e2e/support/e2e-progress-fixture.test.ts`:
- Around line 34-39: Consolidate the environment restoration logic in the test
fixture cleanup into a data-driven loop over the saved variable names and
values, using a single conditional to delete variables whose previous value is
undefined or restore defined values. Update the restoration block containing
previousArtifactDir, previousTargetId, and previousShardId while preserving each
variable’s existing mapping and behavior.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: b64a9b47-60f5-4b69-9f15-2584904f691d

📥 Commits

Reviewing files that changed from the base of the PR and between f293e65 and aecce15.

📒 Files selected for processing (1)
  • test/e2e/support/e2e-progress-fixture.test.ts

Comment thread test/e2e/support/e2e-progress-fixture.test.ts Outdated
Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 3

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

Inline comments:
In `@test/e2e/live/issue-2478-crash-loop-recovery.test.ts`:
- Line 429: Update the test title in the issue-2478 recovery test to remove the
leading “issue-2478:” prefix and append the issue reference as the final
“(`#2478`)” suffix, preserving the existing behavior-oriented wording.

In `@test/e2e/live/registry-targets.test.ts`:
- Around line 41-49: Ensure the test flow around the lifecycle handling at line
117 always advances through the declared lifecycle phase, even when
target.environment.lifecycle is absent. Keep lifecycle-specific work
conditional, but invoke the phase progression unconditionally so no-lifecycle
targets preserve the ordered REGISTRY_TARGET_PHASES plan and reach its final
phase.

In `@test/e2e/live/whatsapp-qr-compact.test.ts`:
- Around line 273-281: Update the E2E setup around compileProductionPreload and
the matching runtime package installation to request the host/shellProbe fixture
and route both direct child commands through it, preserving redaction and
lifecycle activity for stall diagnostics; alternatively, explicitly forward
equivalent redacted command activity.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 574adbbe-80b5-45a7-b124-e693ecfe474c

📥 Commits

Reviewing files that changed from the base of the PR and between 950fd9c and 75301a0.

📒 Files selected for processing (104)
  • .pre-commit-config.yaml
  • CONTRIBUTING.md
  • package.json
  • test/e2e/README.md
  • test/e2e/docs/README.md
  • test/e2e/fixtures/e2e-test.ts
  • test/e2e/fixtures/progress.ts
  • test/e2e/fixtures/shell-probe.ts
  • test/e2e/live/agent-turn-latency-helpers.ts
  • test/e2e/live/agent-turn-latency.test.ts
  • test/e2e/live/bedrock-runtime-compatible-anthropic.test.ts
  • test/e2e/live/brave-search.test.ts
  • test/e2e/live/channels-add-remove.test.ts
  • test/e2e/live/channels-stop-start-helpers.ts
  • test/e2e/live/channels-stop-start.test.ts
  • test/e2e/live/cloud-inference.test.ts
  • test/e2e/live/cloud-onboard.test.ts
  • test/e2e/live/common-egress-agent.test.ts
  • test/e2e/live/concurrent-gateway-ports.test.ts
  • test/e2e/live/credential-migration.test.ts
  • test/e2e/live/credential-sanitization.test.ts
  • test/e2e/live/cron-preflight-inference-local.test.ts
  • test/e2e/live/dashboard-remote-bind.test.ts
  • test/e2e/live/device-auth-health.test.ts
  • test/e2e/live/diagnostics.test.ts
  • test/e2e/live/docs-validation.test.ts
  • test/e2e/live/double-onboard.test.ts
  • test/e2e/live/full-e2e.test.ts
  • test/e2e/live/gateway-guard-recovery.test.ts
  • test/e2e/live/gateway-health-honest.test.ts
  • test/e2e/live/gpu-double-onboard.test.ts
  • test/e2e/live/gpu-e2e.test.ts
  • test/e2e/live/hermes-discord.test.ts
  • test/e2e/live/hermes-e2e-phases.ts
  • test/e2e/live/hermes-e2e.test.ts
  • test/e2e/live/hermes-gpu-startup.test.ts
  • test/e2e/live/hermes-inference-switch.test.ts
  • test/e2e/live/hermes-root-entrypoint-smoke.test.ts
  • test/e2e/live/hermes-sandbox-secret-boundary.test.ts
  • test/e2e/live/hermes-shields-config.test.ts
  • test/e2e/live/hermes-slack-e2e-helpers.ts
  • test/e2e/live/hermes-slack-e2e.test.ts
  • test/e2e/live/inference-routing-provider-smoke.test.ts
  • test/e2e/live/inference-routing.test.ts
  • test/e2e/live/issue-2478-crash-loop-recovery.test.ts
  • test/e2e/live/issue-4434-tui-unreachable-inference.test.ts
  • test/e2e/live/issue-4462-admin-approval-helper.ts
  • test/e2e/live/issue-4462-scope-upgrade-approval.test.ts
  • test/e2e/live/jetson-nvmap-gpu.test.ts
  • test/e2e/live/kimi-inference-compat.test.ts
  • test/e2e/live/launchable-smoke.test.ts
  • test/e2e/live/mcp-bridge-phases.ts
  • test/e2e/live/mcp-bridge.test.ts
  • test/e2e/live/messaging-compatible-endpoint.test.ts
  • test/e2e/live/messaging-providers.test.ts
  • test/e2e/live/model-router-provider-routed-inference.test.ts
  • test/e2e/live/network-policy.test.ts
  • test/e2e/live/ollama-auth-proxy.test.ts
  • test/e2e/live/onboard-negative-paths.test.ts
  • test/e2e/live/onboard-repair.test.ts
  • test/e2e/live/onboard-resume.test.ts
  • test/e2e/live/openclaw-discord-pairing.test.ts
  • test/e2e/live/openclaw-inference-switch.test.ts
  • test/e2e/live/openclaw-plugin-runtime-exdev.test.ts
  • test/e2e/live/openclaw-skill-cli.test.ts
  • test/e2e/live/openclaw-slack-pairing.test.ts
  • test/e2e/live/openclaw-tui-chat-correlation.test.ts
  • test/e2e/live/openshell-credential-generation-window.test.ts
  • test/e2e/live/openshell-gateway-auth-source-contract-helpers.ts
  • test/e2e/live/openshell-gateway-auth-source-contract.test.ts
  • test/e2e/live/openshell-gateway-upgrade.test.ts
  • test/e2e/live/openshell-version-pin.test.ts
  • test/e2e/live/overlayfs-autofix.test.ts
  • test/e2e/live/rebuild-hermes.test.ts
  • test/e2e/live/rebuild-openclaw.test.ts
  • test/e2e/live/registry-targets.test.ts
  • test/e2e/live/runtime-overrides.test.ts
  • test/e2e/live/sandbox-operations.test.ts
  • test/e2e/live/sandbox-rebuild.test.ts
  • test/e2e/live/sandbox-rlimits-connect.test.ts
  • test/e2e/live/sandbox-survival.test.ts
  • test/e2e/live/sessions-agents-cli.test.ts
  • test/e2e/live/shields-config.test.ts
  • test/e2e/live/skill-agent.test.ts
  • test/e2e/live/snapshot-commands.test.ts
  • test/e2e/live/spark-install.test.ts
  • test/e2e/live/state-backup-restore.test.ts
  • test/e2e/live/state-dir-guard-metadata.test.ts
  • test/e2e/live/telegram-injection.test.ts
  • test/e2e/live/token-rotation.test.ts
  • test/e2e/live/tunnel-lifecycle-helpers.ts
  • test/e2e/live/tunnel-lifecycle.test.ts
  • test/e2e/live/ubuntu-repo-cli-smoke.test.ts
  • test/e2e/live/upgrade-stale-sandbox.test.ts
  • test/e2e/live/whatsapp-qr-compact.test.ts
  • test/e2e/support/agent-turn-latency-progress.test.ts
  • test/e2e/support/e2e-progress-fixture.test.ts
  • test/e2e/support/e2e-progress-outcome.test.ts
  • test/e2e/support/e2e-semantic-phase-check.test.ts
  • test/e2e/support/fixtures/e2e-progress-outcome.fixture.test.ts
  • test/e2e/support/rebuild-hermes-progress.test.ts
  • test/e2e/support/rebuild-hermes-timing.test.ts
  • tools/e2e/check-semantic-phases.mts
  • vitest.config.ts
🚧 Files skipped from review as they are similar to previous changes (3)
  • package.json
  • test/e2e/fixtures/shell-probe.ts
  • test/e2e/fixtures/e2e-test.ts

Comment thread test/e2e/live/issue-2478-crash-loop-recovery.test.ts Outdated
Comment thread test/e2e/live/registry-targets.test.ts
Comment thread test/e2e/live/whatsapp-qr-compact.test.ts
Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>
@cjagwani

Copy link
Copy Markdown
Collaborator Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

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

♻️ Duplicate comments (1)
test/e2e/live/issue-2478-crash-loop-recovery.test.ts (1)

429-429: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Test title still uses issue-2478: prefix instead of the required (#2478) suffix.

This was flagged in a previous review and remains unaddressed. Per coding guidelines, test titles must be behavior-oriented with local issue references placed in a final (#1234) suffix.

Proposed fix
-test("issue-2478: gateway recovery preserves guard chain and avoids crash loop", {
+test("gateway recovery preserves guard chain and avoids crash loop (`#2478`)", {
🤖 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 `@test/e2e/live/issue-2478-crash-loop-recovery.test.ts` at line 429, Update the
test title in the issue-2478 recovery test to describe the behavior without the
`issue-2478:` prefix, and append the local issue reference as the final
`(`#2478`)` suffix. Preserve the existing behavior description.

Sources: Coding guidelines, Learnings

🧹 Nitpick comments (1)
test/e2e/support/e2e-semantic-phase-check.test.ts (1)

69-72: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Avoid hard-coding complete diagnostic formatting.

This assertion couples the test to wording, synthetic file paths, line numbers, and test names. Assert the failure count plus stable semantic fragments instead, so harmless diagnostic-format changes do not break behavioral coverage.

As per path instructions, tests should prefer observable outcomes through the public boundary over source-text or implementation-shape assertions.

🤖 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 `@test/e2e/support/e2e-semantic-phase-check.test.ts` around lines 69 - 72,
Update the assertion in the semantic phase check test to verify the expected
failure count and stable diagnostic fragments, rather than matching complete
messages with file paths, line numbers, or test names. Preserve coverage that
each failure identifies the missing semantic phase and the relevant download
scenarios while allowing diagnostic wording and formatting to change.

Source: Path instructions

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

Duplicate comments:
In `@test/e2e/live/issue-2478-crash-loop-recovery.test.ts`:
- Line 429: Update the test title in the issue-2478 recovery test to describe
the behavior without the `issue-2478:` prefix, and append the local issue
reference as the final `(`#2478`)` suffix. Preserve the existing behavior
description.

---

Nitpick comments:
In `@test/e2e/support/e2e-semantic-phase-check.test.ts`:
- Around line 69-72: Update the assertion in the semantic phase check test to
verify the expected failure count and stable diagnostic fragments, rather than
matching complete messages with file paths, line numbers, or test names.
Preserve coverage that each failure identifies the missing semantic phase and
the relevant download scenarios while allowing diagnostic wording and formatting
to change.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 8c645882-1ff1-4b6a-929f-70911712c70e

📥 Commits

Reviewing files that changed from the base of the PR and between 950fd9c and 99295a8.

📒 Files selected for processing (106)
  • .pre-commit-config.yaml
  • CONTRIBUTING.md
  • package.json
  • test/e2e/README.md
  • test/e2e/docs/README.md
  • test/e2e/fixtures/e2e-test.ts
  • test/e2e/fixtures/progress.ts
  • test/e2e/fixtures/shell-probe.ts
  • test/e2e/live/agent-turn-latency-helpers.ts
  • test/e2e/live/agent-turn-latency.test.ts
  • test/e2e/live/bedrock-runtime-compatible-anthropic.test.ts
  • test/e2e/live/brave-search.test.ts
  • test/e2e/live/channels-add-remove.test.ts
  • test/e2e/live/channels-stop-start-helpers.ts
  • test/e2e/live/channels-stop-start.test.ts
  • test/e2e/live/cloud-inference.test.ts
  • test/e2e/live/cloud-onboard.test.ts
  • test/e2e/live/common-egress-agent.test.ts
  • test/e2e/live/concurrent-gateway-ports.test.ts
  • test/e2e/live/credential-migration.test.ts
  • test/e2e/live/credential-sanitization.test.ts
  • test/e2e/live/cron-preflight-inference-local.test.ts
  • test/e2e/live/dashboard-remote-bind.test.ts
  • test/e2e/live/device-auth-health.test.ts
  • test/e2e/live/diagnostics.test.ts
  • test/e2e/live/docs-validation.test.ts
  • test/e2e/live/double-onboard.test.ts
  • test/e2e/live/full-e2e.test.ts
  • test/e2e/live/gateway-guard-recovery.test.ts
  • test/e2e/live/gateway-health-honest.test.ts
  • test/e2e/live/gpu-double-onboard.test.ts
  • test/e2e/live/gpu-e2e.test.ts
  • test/e2e/live/hermes-discord.test.ts
  • test/e2e/live/hermes-e2e-phases.ts
  • test/e2e/live/hermes-e2e.test.ts
  • test/e2e/live/hermes-gpu-startup.test.ts
  • test/e2e/live/hermes-inference-switch.test.ts
  • test/e2e/live/hermes-root-entrypoint-smoke.test.ts
  • test/e2e/live/hermes-sandbox-secret-boundary.test.ts
  • test/e2e/live/hermes-shields-config.test.ts
  • test/e2e/live/hermes-slack-e2e-helpers.ts
  • test/e2e/live/hermes-slack-e2e.test.ts
  • test/e2e/live/inference-routing-provider-smoke.test.ts
  • test/e2e/live/inference-routing.test.ts
  • test/e2e/live/issue-2478-crash-loop-recovery.test.ts
  • test/e2e/live/issue-4434-tui-unreachable-inference.test.ts
  • test/e2e/live/issue-4462-admin-approval-helper.ts
  • test/e2e/live/issue-4462-scope-upgrade-approval.test.ts
  • test/e2e/live/jetson-nvmap-gpu.test.ts
  • test/e2e/live/kimi-inference-compat.test.ts
  • test/e2e/live/launchable-smoke.test.ts
  • test/e2e/live/mcp-bridge-phases.ts
  • test/e2e/live/mcp-bridge.test.ts
  • test/e2e/live/messaging-compatible-endpoint.test.ts
  • test/e2e/live/messaging-providers.test.ts
  • test/e2e/live/model-router-provider-routed-inference.test.ts
  • test/e2e/live/network-policy.test.ts
  • test/e2e/live/ollama-auth-proxy.test.ts
  • test/e2e/live/onboard-negative-paths.test.ts
  • test/e2e/live/onboard-repair.test.ts
  • test/e2e/live/onboard-resume.test.ts
  • test/e2e/live/openclaw-discord-pairing.test.ts
  • test/e2e/live/openclaw-inference-switch.test.ts
  • test/e2e/live/openclaw-plugin-runtime-exdev.test.ts
  • test/e2e/live/openclaw-skill-cli.test.ts
  • test/e2e/live/openclaw-slack-pairing.test.ts
  • test/e2e/live/openclaw-tui-chat-correlation.test.ts
  • test/e2e/live/openshell-credential-generation-window.test.ts
  • test/e2e/live/openshell-gateway-auth-source-contract-helpers.ts
  • test/e2e/live/openshell-gateway-auth-source-contract.test.ts
  • test/e2e/live/openshell-gateway-upgrade.test.ts
  • test/e2e/live/openshell-version-pin.test.ts
  • test/e2e/live/overlayfs-autofix.test.ts
  • test/e2e/live/rebuild-hermes.test.ts
  • test/e2e/live/rebuild-openclaw.test.ts
  • test/e2e/live/registry-targets.test.ts
  • test/e2e/live/runtime-overrides.test.ts
  • test/e2e/live/sandbox-operations.test.ts
  • test/e2e/live/sandbox-rebuild.test.ts
  • test/e2e/live/sandbox-rlimits-connect.test.ts
  • test/e2e/live/sandbox-survival.test.ts
  • test/e2e/live/sessions-agents-cli.test.ts
  • test/e2e/live/shields-config.test.ts
  • test/e2e/live/skill-agent.test.ts
  • test/e2e/live/snapshot-commands.test.ts
  • test/e2e/live/spark-install.test.ts
  • test/e2e/live/state-backup-restore.test.ts
  • test/e2e/live/state-dir-guard-metadata.test.ts
  • test/e2e/live/telegram-injection.test.ts
  • test/e2e/live/token-rotation.test.ts
  • test/e2e/live/tunnel-lifecycle-helpers.ts
  • test/e2e/live/tunnel-lifecycle.test.ts
  • test/e2e/live/ubuntu-repo-cli-smoke.test.ts
  • test/e2e/live/upgrade-stale-sandbox.test.ts
  • test/e2e/live/whatsapp-qr-compact.test.ts
  • test/e2e/mock-parity.json
  • test/e2e/support/agent-turn-latency-progress.test.ts
  • test/e2e/support/e2e-progress-fixture.test.ts
  • test/e2e/support/e2e-progress-outcome.test.ts
  • test/e2e/support/e2e-semantic-phase-check.test.ts
  • test/e2e/support/fixtures/e2e-progress-outcome.fixture.test.ts
  • test/e2e/support/fixtures/semantic-phase-invalid.fixture.ts
  • test/e2e/support/rebuild-hermes-progress.test.ts
  • test/e2e/support/rebuild-hermes-timing.test.ts
  • tools/e2e/check-semantic-phases.mts
  • vitest.config.ts
🚧 Files skipped from review as they are similar to previous changes (83)
  • test/e2e/live/channels-stop-start.test.ts
  • test/e2e/live/mcp-bridge-phases.ts
  • test/e2e/live/tunnel-lifecycle.test.ts
  • test/e2e/live/sandbox-rlimits-connect.test.ts
  • package.json
  • test/e2e/live/issue-4462-admin-approval-helper.ts
  • test/e2e/live/spark-install.test.ts
  • test/e2e/live/docs-validation.test.ts
  • test/e2e/live/hermes-e2e-phases.ts
  • test/e2e/live/openshell-gateway-auth-source-contract.test.ts
  • test/e2e/live/dashboard-remote-bind.test.ts
  • test/e2e/live/cloud-onboard.test.ts
  • .pre-commit-config.yaml
  • test/e2e/live/concurrent-gateway-ports.test.ts
  • test/e2e/live/hermes-inference-switch.test.ts
  • test/e2e/README.md
  • test/e2e/live/brave-search.test.ts
  • test/e2e/live/cron-preflight-inference-local.test.ts
  • test/e2e/live/hermes-slack-e2e.test.ts
  • test/e2e/live/openclaw-skill-cli.test.ts
  • test/e2e/live/shields-config.test.ts
  • test/e2e/live/openclaw-slack-pairing.test.ts
  • test/e2e/live/double-onboard.test.ts
  • test/e2e/live/full-e2e.test.ts
  • test/e2e/live/channels-stop-start-helpers.ts
  • test/e2e/live/ollama-auth-proxy.test.ts
  • test/e2e/live/credential-sanitization.test.ts
  • test/e2e/live/skill-agent.test.ts
  • test/e2e/live/messaging-providers.test.ts
  • test/e2e/live/state-backup-restore.test.ts
  • test/e2e/live/openclaw-discord-pairing.test.ts
  • test/e2e/live/model-router-provider-routed-inference.test.ts
  • test/e2e/live/credential-migration.test.ts
  • test/e2e/live/device-auth-health.test.ts
  • test/e2e/live/hermes-root-entrypoint-smoke.test.ts
  • test/e2e/live/kimi-inference-compat.test.ts
  • test/e2e/live/jetson-nvmap-gpu.test.ts
  • test/e2e/live/ubuntu-repo-cli-smoke.test.ts
  • test/e2e/support/fixtures/e2e-progress-outcome.fixture.test.ts
  • test/e2e/live/hermes-gpu-startup.test.ts
  • test/e2e/live/gateway-health-honest.test.ts
  • test/e2e/live/runtime-overrides.test.ts
  • CONTRIBUTING.md
  • test/e2e/fixtures/shell-probe.ts
  • test/e2e/live/onboard-resume.test.ts
  • test/e2e/live/openshell-credential-generation-window.test.ts
  • test/e2e/live/telegram-injection.test.ts
  • test/e2e/live/openshell-version-pin.test.ts
  • test/e2e/live/issue-4462-scope-upgrade-approval.test.ts
  • test/e2e/live/sandbox-operations.test.ts
  • test/e2e/live/hermes-sandbox-secret-boundary.test.ts
  • test/e2e/live/hermes-discord.test.ts
  • test/e2e/live/openshell-gateway-auth-source-contract-helpers.ts
  • test/e2e/live/sandbox-rebuild.test.ts
  • test/e2e/live/sandbox-survival.test.ts
  • test/e2e/support/rebuild-hermes-timing.test.ts
  • test/e2e/live/hermes-slack-e2e-helpers.ts
  • test/e2e/support/e2e-progress-fixture.test.ts
  • test/e2e/live/tunnel-lifecycle-helpers.ts
  • test/e2e/live/gateway-guard-recovery.test.ts
  • test/e2e/live/token-rotation.test.ts
  • test/e2e/live/rebuild-openclaw.test.ts
  • test/e2e/live/cloud-inference.test.ts
  • test/e2e/live/agent-turn-latency-helpers.ts
  • test/e2e/live/inference-routing-provider-smoke.test.ts
  • test/e2e/live/gpu-e2e.test.ts
  • test/e2e/live/bedrock-runtime-compatible-anthropic.test.ts
  • test/e2e/live/openclaw-inference-switch.test.ts
  • test/e2e/live/snapshot-commands.test.ts
  • test/e2e/live/messaging-compatible-endpoint.test.ts
  • test/e2e/live/sessions-agents-cli.test.ts
  • test/e2e/live/hermes-e2e.test.ts
  • test/e2e/fixtures/progress.ts
  • test/e2e/live/overlayfs-autofix.test.ts
  • test/e2e/support/agent-turn-latency-progress.test.ts
  • test/e2e/fixtures/e2e-test.ts
  • test/e2e/live/rebuild-hermes.test.ts
  • test/e2e/live/network-policy.test.ts
  • test/e2e/live/onboard-repair.test.ts
  • tools/e2e/check-semantic-phases.mts
  • test/e2e/live/common-egress-agent.test.ts
  • test/e2e/live/inference-routing.test.ts
  • test/e2e/live/state-dir-guard-metadata.test.ts

Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>
@cjagwani

Copy link
Copy Markdown
Collaborator Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

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

Inline comments:
In `@test/e2e/live/openshell-version-pin.test.ts`:
- Line 383: Move the enterInspectionPhase() call in the installation test to
immediately after the expect(result.status).toBe(0) assertion, ensuring
inspection begins only when installer execution succeeds and failures remain
attributed to installation.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: f33b0067-abf0-411d-babc-5f68d4c7052d

📥 Commits

Reviewing files that changed from the base of the PR and between 99295a8 and 6ca5584.

📒 Files selected for processing (7)
  • .github/workflows/e2e.yaml
  • test/e2e/docs/README.md
  • test/e2e/live/openshell-version-pin.test.ts
  • test/e2e/support/e2e-semantic-phase-check.test.ts
  • test/e2e/support/upload-e2e-artifacts-workflow-boundary.test.ts
  • tools/e2e/check-semantic-phases.mts
  • tools/e2e/upload-e2e-artifacts-workflow-boundary.mts
🚧 Files skipped from review as they are similar to previous changes (4)
  • .github/workflows/e2e.yaml
  • tools/e2e/upload-e2e-artifacts-workflow-boundary.mts
  • test/e2e/docs/README.md
  • tools/e2e/check-semantic-phases.mts

Comment thread test/e2e/live/openshell-version-pin.test.ts Outdated
Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>
@cjagwani

Copy link
Copy Markdown
Collaborator Author

@coderabbitai review

Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>
@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@cjagwani

Copy link
Copy Markdown
Collaborator Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

cjagwani added 3 commits July 20, 2026 12:15
Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>
Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>
Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>
@cjagwani

Copy link
Copy Markdown
Collaborator Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
test/e2e/mock-parity.json (1)

49-55: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Map the semantic-progress checks for this migrated live test.

launchable-smoke.test.ts now declares and transitions semantic phases, but this entry omits the three phase-support tests included for the other migrated live entries. The parity validator only checks declared mappings, so a phase-only regression here can select unrelated fast tests instead.

Proposed mapping update
       "fast": [
         "test/brev-launchable-ci-cpu-checksum.test.ts",
         "test/e2e/support/e2e-live-target-gating.test.ts",
+        "test/e2e/support/e2e-progress-fixture.test.ts",
+        "test/e2e/support/e2e-progress-outcome.test.ts",
+        "test/e2e/support/e2e-semantic-phase-check.test.ts",
         "test/e2e/support/prepare-e2e-workflow-boundary.test.ts",
🤖 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 `@test/e2e/mock-parity.json` around lines 49 - 55, Update the
launchable-smoke.test.ts entry in the mock-parity mapping to include the same
three semantic-phase support tests used by the other migrated live entries.
Preserve the existing fast test mappings and copy the established support-test
identifiers exactly so phase-only regressions select the correct checks.
🧹 Nitpick comments (1)
test/e2e/support/e2e-semantic-phase-check.test.ts (1)

45-78: 🎯 Functional Correctness | 🔵 Trivial | ⚡ Quick win

Cover empty and multiple forwarded-module lists.

The validator requires exactly one forwarded module, but this test only exercises valid and invalid single-entry lists. Add [] and a two-entry list to verify the cardinality guard and prevent future weakening to “contains the expected target.”

🤖 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 `@test/e2e/support/e2e-semantic-phase-check.test.ts` around lines 45 - 78,
Extend the “accepts only the exact bootstrap forwarding alias” test for
validateCollectedSemanticPhaseModule with empty and two-entry
forwardedTestModules cases. Assert both are rejected with the existing
exact-forwarding-module error, preserving the valid single-entry case and
preventing acceptance based only on containing the expected target.

Source: Path instructions

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

Outside diff comments:
In `@test/e2e/mock-parity.json`:
- Around line 49-55: Update the launchable-smoke.test.ts entry in the
mock-parity mapping to include the same three semantic-phase support tests used
by the other migrated live entries. Preserve the existing fast test mappings and
copy the established support-test identifiers exactly so phase-only regressions
select the correct checks.

---

Nitpick comments:
In `@test/e2e/support/e2e-semantic-phase-check.test.ts`:
- Around line 45-78: Extend the “accepts only the exact bootstrap forwarding
alias” test for validateCollectedSemanticPhaseModule with empty and two-entry
forwardedTestModules cases. Assert both are rejected with the existing
exact-forwarding-module error, preserving the valid single-entry case and
preventing acceptance based only on containing the expected target.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: ab54d457-e9a0-4238-b667-32d160c8fb7d

📥 Commits

Reviewing files that changed from the base of the PR and between b7f7863 and 6dd4e87.

📒 Files selected for processing (8)
  • .github/workflows/e2e.yaml
  • test/e2e/live/launchable-smoke.test.ts
  • test/e2e/live/registry-targets.test.ts
  • test/e2e/mock-parity.json
  • test/e2e/support/e2e-fixture-context.test.ts
  • test/e2e/support/e2e-semantic-phase-check.test.ts
  • tools/e2e/check-semantic-phases.mts
  • vitest.config.ts
🚧 Files skipped from review as they are similar to previous changes (4)
  • .github/workflows/e2e.yaml
  • test/e2e/live/registry-targets.test.ts
  • vitest.config.ts
  • tools/e2e/check-semantic-phases.mts

Signed-off-by: Charan Jagwani <cjagwani@nvidia.com>
@cjagwani

Copy link
Copy Markdown
Collaborator Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@jyaunches jyaunches added v0.0.91 Release target and removed v0.0.90 Release target labels Jul 20, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area: ci CI workflows, checks, release automation, or GitHub Actions area: e2e End-to-end tests, nightly failures, or validation infrastructure feature PR adds or expands user-visible functionality v0.0.91 Release target

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants