Skip to content

Conversation

@Harmeet221
Copy link
Contributor

@Harmeet221 Harmeet221 commented Oct 15, 2025

JIRA Task: https://rocketchat.atlassian.net/browse/QA-104

This PR adds automated test coverage to verify that the upsell modal is displayed for voice call actions in the Community Edition.

Scenarios

DM Action: Should display the upsell modal when the user clicks on the Voice Call button inside a Direct Message.

User Info Action: Should display the upsell modal when the user clicks the Voice Call button from the User Info sidebar.

User Menu Action: Should display the upsell modal when the user initiates a New Voice Call from the User Menu.

Proposed changes (including videos or screenshots)

Issue(s)

Steps to test or reproduce

Further comments

Summary by CodeRabbit

  • Tests

    • Added end-to-end coverage for Voice Calls (Community Edition); tests verify the upsell modal when initiating a voice call from DMs, contact info, and profile menu.
  • Tests / Test helpers

    • Added page-object fragments and new locators for voice-call actions, plus a modal close helper to improve test reliability.
  • Accessibility

    • Improved accessible labeling for the voice calls configuration modal using stable element IDs.

@Harmeet221 Harmeet221 requested a review from a team as a code owner October 15, 2025 12:45
@dionisio-bot
Copy link
Contributor

dionisio-bot bot commented Oct 15, 2025

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

  • This PR is targeting the wrong base branch. It should target 7.13.0, but it targets 7.12.0

Please fix the issues and try again

If you have any trouble, please check the PR guidelines

@changeset-bot
Copy link

changeset-bot bot commented Oct 15, 2025

⚠️ No Changeset found

Latest commit: 51dc742

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

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 15, 2025

Walkthrough

Adds E2E tests and supporting page-object fragments for the Team voice-calls upsell: new CE test suite, new upsell modal fragment, modal close helper, added HomeContent locators, and an accessibility id wired into TeamsVoipConfigModal.

Changes

Cohort / File(s) Summary
HomeContent page object
apps/meteor/tests/e2e/page-objects/fragments/home-content.ts
Added public getters btnVoiceCall, btnContactInformation, and btnContactInfoVoiceCall to locate voice-call and contact-info buttons.
Voice calls upsell modal
apps/meteor/tests/e2e/page-objects/fragments/upsell-modal.ts
Added VoiceCallsUpsellModal class (extends Modal) that binds to the dialog named "Team voice calls".
Modal base fragment
apps/meteor/tests/e2e/page-objects/fragments/modal.ts
Added private btnClose locator and public async close() to click Close and wait for dismissal.
E2E tests (CE)
apps/meteor/tests/e2e/voice-calls-ce.spec.ts
New test suite "Voice Calls - Community Edition" with three tests asserting the upsell modal appears from DM toolbar, contact-info sidebar, and user menu flows.
Client UI accessibility
apps/meteor/client/views/room/contextualBar/TeamsVoipConfigModal.tsx
Use React useId to generate teamsVoipConfigModalId; set aria-labelledby on Modal and assign id to ModalTitle for accessible labeling.

Sequence Diagram(s)

sequenceDiagram
  actor Tester as Test Runner
  participant Play as Playwright
  participant UI as App UI
  participant Upsell as "Team voice calls" Modal

  rect rgb(245,250,255)
  note right of Tester: Voice Calls CE upsell flows
  Tester->>Play: start test, open /home and prepare session
  Play->>UI: open DM with user2 / open user menu / open contact info
  end

  alt DM toolbar
    Play->>UI: click `btnVoiceCall` (room toolbar)
    UI-->>Upsell: render upsell modal
  else Contact Info
    Play->>UI: click `btnContactInfoVoiceCall` (contact sidebar)
    UI-->>Upsell: render upsell modal
  else User Menu
    Play->>UI: select "New voice call" from user menu
    UI-->>Upsell: render upsell modal
  end

  Play->>Upsell: assert visible
  Play->>Upsell: optionally call `close()` → modal dismissed
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

Suggested labels

stat: ready to merge

Suggested reviewers

  • MartinSchoeler

Poem

I hop and click where buttons gleam,
Through rooms and modals, swift and keen.
An upsell pops when voices call,
I test, I close — I checked them all.
The rabbit hops — the logs are green. 🐇

Pre-merge checks and finishing touches

❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Out of Scope Changes Check ⚠️ Warning The majority of changes are appropriately scoped to test coverage objectives, including new page object locators, test specifications, and test infrastructure enhancements. However, the modifications to apps/meteor/client/views/room/contextualBar/TeamsVoipConfigModal.tsx introduce accessibility improvements (useId, aria-labelledby attributes) that constitute product code changes rather than test coverage additions. These accessibility modifications fall outside the stated objective to "add automated test coverage" and appear to be unrelated to the test requirements, as the existing modal could be tested without these enhancements. Consider removing the product code changes to TeamsVoipConfigModal.tsx or clarifying whether these accessibility improvements are essential for test functionality. If the accessibility changes are necessary, they should be documented as part of the objective scope or submitted as a separate PR to maintain clear separation of concerns between test coverage additions and product code modifications.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title Check ✅ Passed The PR title "test: Display upsell modal for voice calls on community edition" directly and accurately summarizes the main objective of the changeset. The title clearly identifies that this is a test-related change (using the "test:" prefix), specifies the feature being tested (upsell modal for voice calls), and indicates the context (community edition). This concisely captures the primary purpose without unnecessary verbosity or vague terminology. The title aligns well with the actual changes, which involve adding end-to-end test coverage for the three specified voice call upsell scenarios.
Linked Issues Check ✅ Passed The PR successfully addresses all coding requirements from QA-104. It adds a comprehensive test suite in voice-calls-ce.spec.ts that covers all three required scenarios: the DM action test verifies the upsell modal appears when clicking the voice call button in a Direct Message, the user info action test verifies the modal appears from the User Info sidebar, and the user menu action test verifies the modal appears when initiating a new voice call from the User Menu. Supporting infrastructure has been properly added, including new locators in HomeContent, a new VoiceCallsUpsellModal page object class, and enhancements to the Modal base class to enable proper test control and assertions.
Docstring Coverage ✅ Passed No functions found in the changes. Docstring coverage check skipped.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch voice-calls

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Jira integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between c1329c6 and 51dc742.

📒 Files selected for processing (1)
  • apps/meteor/tests/e2e/page-objects/fragments/modal.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (3)
apps/meteor/tests/e2e/page-objects/**/*.ts

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

Utilize and place Page Object implementations under apps/meteor/tests/e2e/page-objects/

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/modal.ts
apps/meteor/tests/e2e/**/*.{ts,tsx,js,jsx}

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

apps/meteor/tests/e2e/**/*.{ts,tsx,js,jsx}: Write concise, technical TypeScript/JavaScript with accurate typing
Follow DRY by extracting reusable logic into helper functions or page objects
Avoid code comments in the implementation

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/modal.ts
apps/meteor/tests/e2e/**/*.{ts,tsx}

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

apps/meteor/tests/e2e/**/*.{ts,tsx}: Avoid using page.locator(); prefer semantic locators like page.getByRole, page.getByLabel, page.getByText, and page.getByTitle
Store commonly used locators in variables/constants for reuse
Use page.waitFor() with specific conditions and avoid hardcoded timeouts
Implement proper wait strategies for dynamic content
Follow the Page Object Model pattern consistently

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/modal.ts
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: CodeQL-Build
  • GitHub Check: CodeQL-Build
🔇 Additional comments (1)
apps/meteor/tests/e2e/page-objects/fragments/modal.ts (1)

16-23: LGTM! Implementation follows established patterns.

The close() method mirrors the existing save() method structure and correctly uses semantic locators per the coding guidelines. The private getter for btnClose promotes reusability, and the wait strategy ensures the modal dismisses before proceeding.


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.

@Harmeet221 Harmeet221 marked this pull request as draft October 15, 2025 12:48
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (1)
apps/meteor/tests/e2e/page-objects/fragments/home-content.ts (1)

302-304: Scope the selector to avoid ambiguity.

The btnVoiceCall locator searches the entire page for any button with the name "Voice call". This could match multiple buttons if both the toolbar button and contact information button are visible simultaneously, potentially causing test flakiness.

Consider scoping the selector to the primary room actions toolbar:

 get btnVoiceCall(): Locator {
-  return this.page.getByRole('button', { name: 'Voice call' });
+  return this.primaryRoomActionsToolbar.getByRole('button', { name: 'Voice call' });
 }

This pattern is consistent with btnVideoCall at line 492, which already uses this scoping approach.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Jira integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 9282732 and 0c587cf.

📒 Files selected for processing (2)
  • apps/meteor/tests/e2e/page-objects/fragments/home-content.ts (2 hunks)
  • apps/meteor/tests/e2e/voice-calls-ce.spec.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (4)
apps/meteor/tests/e2e/page-objects/**/*.ts

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

Utilize and place Page Object implementations under apps/meteor/tests/e2e/page-objects/

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/home-content.ts
apps/meteor/tests/e2e/**/*.{ts,tsx,js,jsx}

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

apps/meteor/tests/e2e/**/*.{ts,tsx,js,jsx}: Write concise, technical TypeScript/JavaScript with accurate typing
Follow DRY by extracting reusable logic into helper functions or page objects
Avoid code comments in the implementation

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/home-content.ts
  • apps/meteor/tests/e2e/voice-calls-ce.spec.ts
apps/meteor/tests/e2e/**/*.{ts,tsx}

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

apps/meteor/tests/e2e/**/*.{ts,tsx}: Avoid using page.locator(); prefer semantic locators like page.getByRole, page.getByLabel, page.getByText, and page.getByTitle
Store commonly used locators in variables/constants for reuse
Use page.waitFor() with specific conditions and avoid hardcoded timeouts
Implement proper wait strategies for dynamic content
Follow the Page Object Model pattern consistently

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/home-content.ts
  • apps/meteor/tests/e2e/voice-calls-ce.spec.ts
apps/meteor/tests/e2e/**/*.spec.ts

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

apps/meteor/tests/e2e/**/*.spec.ts: All Playwright test files must be located under apps/meteor/tests/e2e/ and use the .spec.ts extension (e.g., login.spec.ts)
Use descriptive test names that clearly communicate expected behavior
Use test.beforeAll() and test.afterAll() for setup and teardown
Use test.step() to organize complex test scenarios
Group related tests in the same file
Utilize Playwright fixtures (test, page, expect) consistently
Prefer web-first assertions (e.g., toBeVisible, toHaveText)
Use expect matchers (toEqual, toContain, toBeTruthy, toHaveLength, etc.) instead of assert statements
Maintain test isolation between test cases
Ensure a clean state for each test execution
Ensure tests run reliably in parallel without shared state conflicts

Files:

  • apps/meteor/tests/e2e/voice-calls-ce.spec.ts
🧬 Code graph analysis (1)
apps/meteor/tests/e2e/voice-calls-ce.spec.ts (1)
apps/meteor/tests/e2e/page-objects/home-channel.ts (1)
  • HomeChannel (5-123)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (6)
  • GitHub Check: 🔨 Test Unit / Unit Tests
  • GitHub Check: 🔎 Code Check / TypeScript
  • GitHub Check: 🔎 Code Check / Code Lint
  • GitHub Check: 🔨 Test Storybook / Test Storybook
  • GitHub Check: 📦 Meteor Build - coverage
  • GitHub Check: CodeQL-Build
🔇 Additional comments (7)
apps/meteor/tests/e2e/voice-calls-ce.spec.ts (5)

1-6: LGTM!

The imports and storage state configuration are correct and follow the established patterns for E2E tests.


20-30: LGTM!

The test properly verifies the upsell modal appears when clicking the voice call button from a DM. The use of test.step for organization and web-first assertions (toBeVisible) follows best practices.


32-43: LGTM!

The test correctly validates the upsell modal appears when clicking the voice call button from the contact information sidebar. Well-structured with clear test steps.


45-54: LGTM!

The test properly verifies the upsell modal appears when initiating a new voice call from the user menu. Clear test organization and appropriate use of page object methods.


11-13: No changes needed: createDirectMessage already creates a DM between user1 and user2.

apps/meteor/tests/e2e/page-objects/fragments/home-content.ts (2)

306-308: LGTM!

The modal locator uses a semantic selector targeting a unique heading text. This is an appropriate way to locate the upsell modal.


330-332: LGTM!

The locator is well-scoped by first finding the group container before locating the button. This prevents ambiguity with other voice call buttons on the page.

@codecov
Copy link

codecov bot commented Oct 15, 2025

Codecov Report

❌ Patch coverage is 0% with 1 line in your changes missing coverage. Please review.
✅ Project coverage is 67.61%. Comparing base (0870d72) to head (51dc742).
⚠️ Report is 1 commits behind head on develop.

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##           develop   #37230      +/-   ##
===========================================
+ Coverage    67.59%   67.61%   +0.02%     
===========================================
  Files         3338     3338              
  Lines       113720   113721       +1     
  Branches     20657    20660       +3     
===========================================
+ Hits         76868    76896      +28     
+ Misses       34171    34146      -25     
+ Partials      2681     2679       -2     
Flag Coverage Δ
e2e 57.40% <0.00%> (-0.01%) ⬇️
e2e-api 40.60% <ø> (+0.10%) ⬆️
unit 71.58% <ø> (+0.01%) ⬆️

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.

@Harmeet221 Harmeet221 marked this pull request as ready for review October 16, 2025 16:42
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Jira integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 0c587cf and d805466.

📒 Files selected for processing (4)
  • apps/meteor/client/views/room/contextualBar/TeamsVoipConfigModal.tsx (3 hunks)
  • apps/meteor/tests/e2e/page-objects/fragments/home-content.ts (2 hunks)
  • apps/meteor/tests/e2e/page-objects/fragments/upsell-modal.ts (1 hunks)
  • apps/meteor/tests/e2e/voice-calls-ce.spec.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • apps/meteor/tests/e2e/voice-calls-ce.spec.ts
  • apps/meteor/tests/e2e/page-objects/fragments/home-content.ts
🧰 Additional context used
📓 Path-based instructions (3)
apps/meteor/tests/e2e/page-objects/**/*.ts

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

Utilize and place Page Object implementations under apps/meteor/tests/e2e/page-objects/

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/upsell-modal.ts
apps/meteor/tests/e2e/**/*.{ts,tsx,js,jsx}

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

apps/meteor/tests/e2e/**/*.{ts,tsx,js,jsx}: Write concise, technical TypeScript/JavaScript with accurate typing
Follow DRY by extracting reusable logic into helper functions or page objects
Avoid code comments in the implementation

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/upsell-modal.ts
apps/meteor/tests/e2e/**/*.{ts,tsx}

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

apps/meteor/tests/e2e/**/*.{ts,tsx}: Avoid using page.locator(); prefer semantic locators like page.getByRole, page.getByLabel, page.getByText, and page.getByTitle
Store commonly used locators in variables/constants for reuse
Use page.waitFor() with specific conditions and avoid hardcoded timeouts
Implement proper wait strategies for dynamic content
Follow the Page Object Model pattern consistently

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/upsell-modal.ts
🧬 Code graph analysis (2)
apps/meteor/tests/e2e/page-objects/fragments/upsell-modal.ts (1)
apps/meteor/tests/e2e/page-objects/modal.ts (1)
  • Modal (3-25)
apps/meteor/client/views/room/contextualBar/TeamsVoipConfigModal.tsx (1)
apps/meteor/tests/e2e/page-objects/modal.ts (1)
  • Modal (3-25)
🔇 Additional comments (2)
apps/meteor/client/views/room/contextualBar/TeamsVoipConfigModal.tsx (1)

19-19: LGTM! Excellent accessibility improvement.

The use of React's useId hook to generate a unique identifier and wire it to both the modal's aria-labelledby and the title's id attribute follows ARIA best practices for modal dialogs. This ensures proper screen reader announcement of the modal's purpose.

Also applies to: 35-35, 50-50, 54-54

apps/meteor/tests/e2e/page-objects/fragments/upsell-modal.ts (1)

10-21: Implementation follows E2E best practices.

The code properly uses semantic locators (getByRole), stores commonly used locators as getters for reuse, and follows the Page Object Model pattern as required by the coding guidelines. Assuming the Modal base class supports the constructor pattern and provides the root property and waitForDismissal() method, this implementation is sound.

dougfabris
dougfabris previously approved these changes Oct 16, 2025
Copy link
Member

@dougfabris dougfabris left a comment

Choose a reason for hiding this comment

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

I think this is ok for now, but our CI is overloaded with naive system level tests. We have to to keep in mind that system level tests are very costly for us. We have to question how we can guarantee test coverage without counting on simulating a real user so frequently

dougfabris
dougfabris previously approved these changes Oct 17, 2025
@Harmeet221 Harmeet221 added the stat: QA assured Means it has been tested and approved by a company insider label Oct 22, 2025
@Harmeet221 Harmeet221 added this to the 7.12.0 milestone Oct 22, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Jira integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between b343ebb and c1329c6.

📒 Files selected for processing (1)
  • apps/meteor/tests/e2e/page-objects/fragments/modal.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (3)
apps/meteor/tests/e2e/page-objects/**/*.ts

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

Utilize and place Page Object implementations under apps/meteor/tests/e2e/page-objects/

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/modal.ts
apps/meteor/tests/e2e/**/*.{ts,tsx,js,jsx}

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

apps/meteor/tests/e2e/**/*.{ts,tsx,js,jsx}: Write concise, technical TypeScript/JavaScript with accurate typing
Follow DRY by extracting reusable logic into helper functions or page objects
Avoid code comments in the implementation

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/modal.ts
apps/meteor/tests/e2e/**/*.{ts,tsx}

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

apps/meteor/tests/e2e/**/*.{ts,tsx}: Avoid using page.locator(); prefer semantic locators like page.getByRole, page.getByLabel, page.getByText, and page.getByTitle
Store commonly used locators in variables/constants for reuse
Use page.waitFor() with specific conditions and avoid hardcoded timeouts
Implement proper wait strategies for dynamic content
Follow the Page Object Model pattern consistently

Files:

  • apps/meteor/tests/e2e/page-objects/fragments/modal.ts
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: 📦 Build Packages
  • GitHub Check: CodeQL-Build
  • GitHub Check: CodeQL-Build
🔇 Additional comments (1)
apps/meteor/tests/e2e/page-objects/fragments/modal.ts (1)

16-18: LGTM!

The implementation correctly mirrors the existing save() pattern, uses semantic locators per guidelines, and provides a reusable close utility for modal interactions.

Also applies to: 20-21, 23-23

@scuciatto scuciatto modified the milestones: 7.12.0, 7.13.0 Oct 22, 2025
@dionisio-bot dionisio-bot bot added the stat: ready to merge PR tested and approved waiting for merge label Oct 22, 2025
@kodiakhq kodiakhq bot merged commit 01aa489 into develop Oct 22, 2025
106 of 110 checks passed
@kodiakhq kodiakhq bot deleted the voice-calls branch October 22, 2025 12:43
gabriellsh pushed a commit that referenced this pull request Oct 28, 2025
gabriellsh pushed a commit that referenced this pull request Oct 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

stat: QA assured Means it has been tested and approved by a company insider stat: ready to merge PR tested and approved waiting for merge

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants