Skip to content

test(e2e): add room toolbox layout spec and feature preview accessibility checks (GSoC 2026)#41063

Open
TheRazorbill wants to merge 9 commits into
RocketChat:feat/GSoC-2026-room-header-projectfrom
TheRazorbill:feat/GSoC-2026-room-header-project
Open

test(e2e): add room toolbox layout spec and feature preview accessibility checks (GSoC 2026)#41063
TheRazorbill wants to merge 9 commits into
RocketChat:feat/GSoC-2026-room-header-projectfrom
TheRazorbill:feat/GSoC-2026-room-header-project

Conversation

@TheRazorbill

@TheRazorbill TheRazorbill commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

Description

This PR introduces the Playwright E2E integration test suite for the new Room Toolbox Layout customization engine (GSoC 2026) and adds accessibility verification tests using axe-core.

What was done

1. Room Toolbox Layout Spec (room-toolbox-layout.spec.ts)

Added a new E2E test suite consisting of 7 test cases organized into 3 main groups:

  • Custom Layout Ordering and Pinning: Verifies that custom featured actions are pinned, normal actions within the configured limit are visible in the header, and overflow actions collapse into the kebab menu.
  • Mobile Viewport: Verifies responsive layout scaling where normal actions collapse into dropdown items while featured actions remain visible in the header on narrow viewports.
  • Soft Fallbacks: Ensures that if the custom layout feature preview is turned off or has malformed JSON configurations, the toolbar defaults safely to legacy behavior without crashing.

2. Accessibility Checks (feature-preview.spec.ts)

  • Added automated accessibility checks using @axe-core/playwright (makeAxeBuilder) targeting the Feature Preview list component (specifically scoped under #main-content to prevent global layout false positives).
  • Asserts 100% compliance with WCAG standards for the main feature preview interface.
image

Review in cubic

Summary by CodeRabbit

  • Bug Fixes
    • Improved room toolbox header/action layout when the layout configuration is incomplete and when actions are disabled, ensuring consistent featured/normal/overflow (“More options”) behavior.
  • Tests
    • Added an Axe accessibility audit for the feature preview page (scoped to the main content), asserting no violations.
    • Expanded end-to-end room toolbox layout coverage for desktop and mobile behavior, including resilience for disabled previews and malformed layout settings (with automatic cleanup/fallback).

@TheRazorbill TheRazorbill requested a review from a team as a code owner June 23, 2026 22:24
Copilot AI review requested due to automatic review settings June 23, 2026 22:24
@dionisio-bot

dionisio-bot Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

Looks like this PR is not ready to merge, because of the following issues:

  • This PR is missing the 'stat: QA assured' label
  • This PR is missing the required milestone or project

Please fix the issues and try again

If you have any trouble, please check the PR guidelines

@changeset-bot

changeset-bot Bot commented Jun 23, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: f88c8ed

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copilot AI 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.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@coderabbitai

coderabbitai Bot commented Jun 23, 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

Updates room toolbox action handling, adds a feature-preview accessibility scan, and expands e2e coverage for desktop, mobile, and fallback room toolbox states.

Changes

Feature Preview: Room Toolbox Layout and A11y Coverage

Layer / File(s) Summary
Hook logic updates
apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts, apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts
processRoomActions now only short-circuits on null config, and builds itemMap from an empty fallback array when items is missing. useRoomToolboxActions filters disabled actions out of layout-preview overflow output and hidden menu sections.
Feature-preview accessibility test
apps/meteor/tests/e2e/feature-preview.spec.ts
Adds a serial test that loads /account/feature-preview, waits for #main-content, runs an Axe scan scoped to that element with WCAG tags, and asserts zero violations.
Room toolbox layout e2e coverage
apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
Adds serialized coverage for desktop layout ordering, mobile collapse behavior, and fallback rendering when the feature is disabled or the layout JSON is malformed. Setup and cleanup hooks manage feature preview state, layout config, and the test room.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Possibly related PRs

Suggested labels

type: feature

Suggested reviewers

  • MartinSchoeler
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly summarizes the main changes: a new room toolbox layout e2e spec and feature preview accessibility checks.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
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.

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

Warning

Review ran into problems

🔥 Problems

Errors were encountered while retrieving linked issues.

Errors (1)
  • GSOC-2026: Request failed with status code 401

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.

@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 `@apps/meteor/tests/e2e/feature-preview.spec.ts`:
- Around line 73-74: In the feature-preview.spec.ts test, replace the call to
`makeAxeBuilder().include('`#main-content`')` with either a fresh AxeBuilder
instance configured with only `.include('`#main-content`')` (avoiding the union
behavior with the existing 'body' include), or refactor the `makeAxeBuilder`
function in utils/test.ts to accept an optional scope parameter that, when
provided, overrides the default 'body' include and applies a single `.include()`
call internally. This ensures the axe scan is properly scoped to only the target
element rather than scanning the entire page.

In `@apps/meteor/tests/e2e/room-toolbox-layout.spec.ts`:
- Around line 23-24: The test suite enables Accounts_AllowFeaturePreview in
beforeAll but does not restore it in afterAll, causing state leakage between
tests. Capture the original value of Accounts_AllowFeaturePreview before
enabling it in the beforeAll block, then use setSettingValueById in the afterAll
block to restore it to its original value alongside any other cleanup code that
may exist there.
- Around line 86-100: The test function starting at line 86 modifies user
preferences at the beginning but only restores them at the end, which means if
any assertion fails before the restoration code, the cleanup is skipped and
subsequent tests will run with leaked state. Wrap the test body (from the
initial setUserPreferences call through all assertions) in a try block, and move
the final setUserPreferences restoration call that sets roomToolboxLayout back
to true into a finally block to ensure cleanup always executes regardless of
assertion failures.
🪄 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: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 4c5e2983-d4c0-4b48-8ef0-b0bc4071c3f5

📥 Commits

Reviewing files that changed from the base of the PR and between 1d8a8d4 and 29abb95.

📒 Files selected for processing (2)
  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
📜 Review details
⏰ Context from checks skipped due to timeout. (1)
  • GitHub Check: cubic · AI code reviewer
🧰 Additional context used
📓 Path-based instructions (4)
**/*.{ts,tsx,js}

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.{ts,tsx,js}: Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests
Avoid code comments in the implementation

Files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
**/*.spec.ts

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.spec.ts: Use descriptive test names that clearly communicate expected behavior in Playwright tests
Use .spec.ts extension for test files (e.g., login.spec.ts)

Files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
apps/meteor/tests/e2e/**/*.spec.ts

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

apps/meteor/tests/e2e/**/*.spec.ts: All test files must be created in apps/meteor/tests/e2e/ directory
Avoid using page.locator() in Playwright tests - always prefer semantic locators such as page.getByRole(), page.getByLabel(), page.getByText(), or page.getByTitle()
Use test.beforeAll() and test.afterAll() for setup/teardown in Playwright tests
Use test.step() for complex test scenarios to improve organization in Playwright tests
Group related tests in the same file
Utilize Playwright fixtures (test, page, expect) for consistency in test files
Prefer web-first assertions (toBeVisible, toHaveText, etc.) in Playwright tests
Use expect matchers for assertions (toEqual, toContain, toBeTruthy, toHaveLength, etc.) instead of assert statements in Playwright tests
Use page.waitFor() with specific conditions instead of hardcoded timeouts in Playwright tests
Implement proper wait strategies for dynamic content in Playwright tests
Maintain test isolation between test cases in Playwright tests
Ensure clean state for each test execution in Playwright tests
Ensure tests run reliably in parallel without shared state conflicts

Files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
apps/meteor/tests/e2e/**/*.{ts,spec.ts}

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

apps/meteor/tests/e2e/**/*.{ts,spec.ts}: Store commonly used locators in variables/constants for reuse
Follow Page Object Model pattern consistently in Playwright tests

Files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
🧠 Learnings (6)
📚 Learning: 2026-02-24T19:22:48.358Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 38493
File: apps/meteor/tests/e2e/omnichannel/omnichannel-send-pdf-transcript.spec.ts:66-67
Timestamp: 2026-02-24T19:22:48.358Z
Learning: In Playwright end-to-end tests (e.g., under apps/meteor/tests/e2e/...), prefer locating elements by translated text (getByText) and ARIA roles (getByRole) over data-qa attributes. If translation values change, update the corresponding test locators accordingly. Never use data-qa locators. This guideline applies to all Playwright e2e test specs in the repository and helps keep tests robust to UI text changes and accessible semantics.

Applied to files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
📚 Learning: 2026-02-24T19:39:42.247Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 38493
File: apps/meteor/tests/e2e/page-objects/fragments/message.ts:7-7
Timestamp: 2026-02-24T19:39:42.247Z
Learning: In RocketChat e2e tests, avoid using data-qa attributes to locate elements. Prefer semantic locators such as getByRole, getByLabel, getByText, getByTitle and ARIA-based selectors. Apply this rule to all TypeScript files under apps/meteor/tests/e2e to improve test reliability, accessibility, and maintainability.

Applied to files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In the Rocket.Chat repository, do not reference Biome lint rules in code review feedback. Biome is not used even if biome.json exists; only reference Biome rules if there is explicit, project-wide usage documented. For TypeScript files, review lint implications without Biome guidance unless the project enables Biome rules.

Applied to files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In this repository (RocketChat/Rocket.Chat), Biome lint rules are not used even if a biome.json exists. When reviewing TypeScript files (e.g., packages/ui-voip/src/providers/useMediaSession.ts), ensure lint suggestions do not reference Biome-specific rules. Rely on general ESLint/TypeScript lint rules and project conventions instead.

Applied to files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
📚 Learning: 2026-03-06T18:10:15.268Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 39397
File: packages/gazzodown/src/code/CodeBlock.spec.tsx:47-68
Timestamp: 2026-03-06T18:10:15.268Z
Learning: In tests (especially those using testing-library/dom/jsdom) for Rocket.Chat components, the HTML <code> element has an implicit ARIA role of 'code'. Therefore, screen.getByRole('code') or screen.findByRole('code') will locate <code> elements even without a role attribute. Do not flag findByRole('code') as invalid in reviews; prefer using the implicit role instead of adding role="code" unless necessary for accessibility.

Applied to files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
📚 Learning: 2026-05-06T12:21:44.083Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 40256
File: apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx:121-149
Timestamp: 2026-05-06T12:21:44.083Z
Learning: Field wrappers in rocket.chat/fuselage-forms (Field, FieldLabel, FieldRow, FieldError, FieldHint) auto-create htmlFor/id associations, aria-describedby, and role="alert" for errors. Do not manually set htmlFor, id, aria-describedby, or role attributes when using these wrappers. This automatic wiring does not apply to plain rocket.chat/fuselage components, which require explicit ID wiring per the accessibility docs. In code reviews, prefer using fuselage-forms wrappers for form fields and verify there is no unnecessary manual ID/aria wiring in files that use these wrappers. If a component uses plain fuselage components, ensure proper id wiring as per docs.

Applied to files:

  • apps/meteor/tests/e2e/feature-preview.spec.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts

Comment thread apps/meteor/tests/e2e/feature-preview.spec.ts Outdated
Comment thread apps/meteor/tests/e2e/room-toolbox-layout.spec.ts Outdated
Comment thread apps/meteor/tests/e2e/room-toolbox-layout.spec.ts Outdated

@cubic-dev-ai cubic-dev-ai 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.

3 issues found across 2 files

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread apps/meteor/tests/e2e/room-toolbox-layout.spec.ts Outdated
Comment thread apps/meteor/tests/e2e/room-toolbox-layout.spec.ts Outdated
Comment thread apps/meteor/tests/e2e/feature-preview.spec.ts Outdated

@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
`@apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts`:
- Around line 112-118: The hiddenActions mapping operation filters disabled
items from section.items but still includes sections that become empty after
filtering. Add an additional filter after the map operation on engineSections to
remove any sections where the items array is empty. This will prevent empty menu
groups from appearing in the layout-preview expanded mode. Check that each
section in hiddenActions has at least one item remaining before including it in
the final result.
🪄 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: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 717bf57b-1788-403e-b903-e1717ebf3a6a

📥 Commits

Reviewing files that changed from the base of the PR and between 29abb95 and f2a73ec.

📒 Files selected for processing (3)
  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts
  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/meteor/tests/e2e/room-toolbox-layout.spec.ts
📜 Review details
⏰ Context from checks skipped due to timeout. (1)
  • GitHub Check: cubic · AI code reviewer
🧰 Additional context used
📓 Path-based instructions (1)
**/*.{ts,tsx,js}

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.{ts,tsx,js}: Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests
Avoid code comments in the implementation

Files:

  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts
  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts
🧠 Learnings (5)
📚 Learning: 2026-02-10T16:32:42.586Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 38528
File: apps/meteor/client/startup/roles.ts:14-14
Timestamp: 2026-02-10T16:32:42.586Z
Learning: In Rocket.Chat's Meteor client code, DDP streams use EJSON and Date fields arrive as Date objects; do not manually construct new Date() in stream handlers (for example, in sdk.stream()). Only REST API responses return plain JSON where dates are strings, so implement explicit conversion there if needed. Apply this guidance to all TypeScript files under apps/meteor/client to ensure consistent date handling in DDP streams and REST responses.

Applied to files:

  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts
  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts
📚 Learning: 2026-05-11T20:30:35.265Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 40480
File: apps/meteor/client/meteor/startup/accounts.ts:59-61
Timestamp: 2026-05-11T20:30:35.265Z
Learning: In Rocket.Chat’s Meteor client code, when calling `dispatchToastMessage` with `{ type: 'error' }`, pass the raw caught error object as `message` without manual normalization. `dispatchToastMessage` is designed to accept `message: unknown` for error toasts, so avoid converting errors to strings (e.g., `String(error)`) or extracting `error.message` before passing them.

Applied to files:

  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts
  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In the Rocket.Chat repository, do not reference Biome lint rules in code review feedback. Biome is not used even if biome.json exists; only reference Biome rules if there is explicit, project-wide usage documented. For TypeScript files, review lint implications without Biome guidance unless the project enables Biome rules.

Applied to files:

  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts
  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In this repository (RocketChat/Rocket.Chat), Biome lint rules are not used even if a biome.json exists. When reviewing TypeScript files (e.g., packages/ui-voip/src/providers/useMediaSession.ts), ensure lint suggestions do not reference Biome-specific rules. Rely on general ESLint/TypeScript lint rules and project conventions instead.

Applied to files:

  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts
  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts
📚 Learning: 2026-05-06T12:21:44.083Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 40256
File: apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx:121-149
Timestamp: 2026-05-06T12:21:44.083Z
Learning: Field wrappers in rocket.chat/fuselage-forms (Field, FieldLabel, FieldRow, FieldError, FieldHint) auto-create htmlFor/id associations, aria-describedby, and role="alert" for errors. Do not manually set htmlFor, id, aria-describedby, or role attributes when using these wrappers. This automatic wiring does not apply to plain rocket.chat/fuselage components, which require explicit ID wiring per the accessibility docs. In code reviews, prefer using fuselage-forms wrappers for form fields and verify there is no unnecessary manual ID/aria wiring in files that use these wrappers. If a component uses plain fuselage components, ensure proper id wiring as per docs.

Applied to files:

  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts
  • apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts
🔇 Additional comments (2)
apps/meteor/client/views/room/Header/RoomToolbox/hooks/processRoomActions.ts (1)

27-27: LGTM!

Also applies to: 39-39

apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts (1)

90-90: LGTM!

Comment thread apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts Outdated

@cubic-dev-ai cubic-dev-ai 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.

1 issue found across 3 files (changes from recent commits).

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread apps/meteor/client/views/room/Header/RoomToolbox/hooks/useRoomToolboxActions.ts Outdated
@codecov

codecov Bot commented Jun 25, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
⚠️ Please upload report for BASE (feat/GSoC-2026-room-header-project@1d8a8d4). Learn more about missing BASE report.

Additional details and impacted files

Impacted file tree graph

@@                          Coverage Diff                          @@
##             feat/GSoC-2026-room-header-project   #41063   +/-   ##
=====================================================================
  Coverage                                      ?   69.76%           
=====================================================================
  Files                                         ?     3328           
  Lines                                         ?   123327           
  Branches                                      ?    21999           
=====================================================================
  Hits                                          ?    86040           
  Misses                                        ?    33926           
  Partials                                      ?     3361           
Flag Coverage Δ
e2e 59.38% <66.66%> (?)
e2e-api 46.21% <ø> (?)
unit 70.47% <100.00%> (?)

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

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

@coderabbitai coderabbitai Bot added the type: feature Pull requests that introduces new feature label Jun 25, 2026
Comment thread apps/meteor/tests/e2e/feature-preview.spec.ts Outdated
Comment thread apps/meteor/tests/e2e/room-toolbox-layout.spec.ts Outdated

@cubic-dev-ai cubic-dev-ai 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.

1 issue found across 3 files (changes from recent commits).

Tip: Review your code locally with the cubic CLI to iterate faster.

Re-trigger cubic

Comment thread apps/meteor/client/views/room/Header/RoomHeader.spec.tsx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

community type: bug type: chore type: feature Pull requests that introduces new feature

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants