Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added vitest to chat.jsx #2649

Open
wants to merge 6 commits into
base: develop-postgres
Choose a base branch
from

Conversation

NishantSinghhhhh
Copy link

@NishantSinghhhhh NishantSinghhhhh commented Dec 12, 2024

PR Title: Refactor Chat Component Tests: Migrate from Jest to Vitest
Issue Number:
Fixes: #2572

Did you add tests for your changes?
Yes

Snapshots/Videos:

Screencast.from.2024-12-13.00-58-58.webm

Summary:

This PR refactors the test suite for the Chat.tsx component by migrating from Jest to Vitest, in alignment with the project's updated testing framework. The following changes were made:

Updated the testing configuration to be compatible with Vitest.
Refactored all test files related to Chat.tsx to use Vitest's syntax and features.
Consolidated mock definitions to reduce redundancy across test cases for better maintainability.

#Does this PR introduce a breaking change?
Yes

This PR introduces a breaking change as it requires installing the vite-plugin-svgr package using the command:

Reason:
The vite-plugin-svgr plugin is necessary to handle SVG imports in the Vitest environment. Jest previously handled these imports using a different configuration. This change ensures compatibility with Vitest, enabling seamless handling of SVG files as React components within tests and during development.

This breaking change requires developers to update their dependencies and ensure vite-plugin-svgr is installed when migrating to Vitest.

Summary by CodeRabbit

  • New Features

    • Updated the vite-plugin-svgr dependency to enhance functionality.
    • Introduced a new plugin in the configuration to improve Vite integration.
  • Bug Fixes

    • Improved test organization and clarity in the Chat.spec.tsx file for better maintainability and robustness.
  • Documentation

    • Updated test descriptions for consistency and clarity.

Signed-off-by: NishantSinghhhhh <[email protected]>
Copy link

coderabbitai bot commented Dec 12, 2024

Warning

Rate limit exceeded

@NishantSinghhhhh has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 9 minutes and 50 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between 19722f0 and 585844e.

📒 Files selected for processing (1)
  • vitest.config.ts (1 hunks)

Walkthrough

The pull request includes updates to the package.json, modifications to the test file Chat.spec.tsx, and enhancements to the vitest.config.ts configuration. The package.json file primarily updates the version of the vite-plugin-svgr dependency and specifies fixed versions for certain packages. The test file has been refactored to use Vitest instead of Jest, with a reorganization of imports and test structures. Additionally, a new plugin has been added to the Vitest configuration to support SVG imports.

Changes

File Change Summary
package.json Updated vite-plugin-svgr from ^4.2.0 to ^4.3.0, specified fixed versions in resolutions, and set Node.js version to >=20.x.
src/screens/UserPortal/Chat/Chat.spec.tsx Refactored tests to use Vitest, reorganized imports, redefined resizeWindow and wait functions, added beforeEach setup, and updated test descriptions.
vitest.config.ts Added vite-plugin-svgr to the plugins array in the Vitest configuration.

Assessment against linked issues

Objective Addressed Explanation
Replace Jest-specific functions and mocks with Vitest equivalents (#2572)
Ensure all tests in src/screens/UserPortal/Chat pass after migration (#2572)
Maintain the test coverage for the file as 100% after migration (#2572)

Possibly related issues

Possibly related PRs

Suggested labels

test, refactor, ignore-sensitive-files-pr

Suggested reviewers

  • palisadoes

🐇 In the code we play,
With tests that now sway,
From Jest we take flight,
To Vitest's bright light,
Dependencies align,
Our code will now shine! 🌟


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Experiment)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

Our Pull Request Approval Process

Thanks for contributing!

Testing Your Code

Remember, your PRs won't be reviewed until these criteria are met:

  1. We don't merge PRs with poor code quality.
    1. Follow coding best practices such that CodeRabbit.ai approves your PR.
  2. We don't merge PRs with failed tests.
    1. When tests fail, click on the Details link to learn more.
    2. Write sufficient tests for your changes (CodeCov Patch Test). Your testing level must be better than the target threshold of the repository
    3. Tests may fail if you edit sensitive files. Ask to add the ignore-sensitive-files-pr label if the edits are necessary.
  3. We cannot merge PRs with conflicting files. These must be fixed.

Our policies make our code better.

Reviewers

Do not assign reviewers. Our Queue Monitors will review your PR and assign them.
When your PR has been assigned reviewers contact them to get your code reviewed and approved via:

  1. comments in this PR or
  2. our slack channel

Reviewing Your Code

Your reviewer(s) will have the following roles:

  1. arbitrators of future discussions with other contributors about the validity of your changes
  2. point of contact for evaluating the validity of your work
  3. person who verifies matching issues by others that should be closed.
  4. person who gives general guidance in fixing your tests

CONTRIBUTING.md

Read our CONTRIBUTING.md file. Most importantly:

  1. PRs with issues not assigned to you will be closed by the reviewer
  2. Fix the first comment in the PR so that each issue listed automatically closes

Other

  1. 🎯 Please be considerate of our volunteers' time. Contacting the person who assigned the reviewers is not advised unless they ask for your input. Do not @ the person who did the assignment otherwise.
  2. Read the CONTRIBUTING.md file make

Copy link

@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

🧹 Outside diff range and nitpick comments (6)
src/screens/UserPortal/Chat/Chat.spec.tsx (6)

1473-1485: Consider moving window mocks to a separate test utils file.

The window mock implementations could be extracted to a separate test utils file to improve maintainability and reusability across test files.

// Create a new file: src/test/utils/windowMocks.ts
+export const setupWindowMocks = (): void => {
+  window.HTMLElement.prototype.scrollIntoView = vi.fn();
+
+  Object.defineProperty(window, 'matchMedia', {
+    writable: true,
+    value: vi.fn().mockImplementation((query) => ({
+      matches: false,
+      media: query,
+      onchange: null,
+      addListener: vi.fn(),
+      removeListener: vi.fn(),
+      addEventListener: vi.fn(),
+      removeEventListener: vi.fn(),
+      dispatchEvent: vi.fn(),
+    })),
+  });
+};

Then import and use it in your test file:

+import { setupWindowMocks } from 'test/utils/windowMocks';
+
describe('Testing Chat Screen [User Portal]', () => {
-  window.HTMLElement.prototype.scrollIntoView = vi.fn();
-  Object.defineProperty(window, 'matchMedia', {...});
+  setupWindowMocks();

Line range hint 1507-1521: Add assertions to verify component rendering.

The test currently only checks if the component renders without errors. Consider adding specific assertions to verify key elements are present.

 test('Screen should be rendered properly', async () => {
   render(
     <MockedProvider addTypename={false} mocks={mock}>
       <BrowserRouter>
         <Provider store={store}>
           <I18nextProvider i18n={i18nForTest}>
             <Chat />
           </I18nextProvider>
         </Provider>
       </BrowserRouter>
     </MockedProvider>,
   );
   await wait();
+  
+  // Verify key elements are present
+  expect(screen.getByText('Messages')).toBeInTheDocument();
+  expect(screen.getByTestId('contactCardContainer')).toBeInTheDocument();
+  expect(screen.getByTestId('dropdown')).toBeInTheDocument();
 });

Line range hint 1522-1597: Add test coverage for chat creation functionality.

Current tests only verify UI interactions (button clicks, modal visibility). Consider adding tests for:

  1. Successful chat creation
  2. Error handling
  3. Form validation

Example addition:

test('successfully creates a direct chat', async () => {
  render(/* ... */);
  
  // Open new chat modal
  fireEvent.click(await screen.findByTestId('dropdown'));
  fireEvent.click(await screen.findByTestId('newDirectChat'));
  
  // Fill form
  fireEvent.change(screen.getByTestId('userSelect'), {
    target: { value: 'Test User' }
  });
  
  // Submit and verify
  fireEvent.click(screen.getByTestId('submitBtn'));
  
  // Wait for success message
  expect(await screen.findByText('Chat created successfully')).toBeInTheDocument();
  
  // Verify new chat appears in list
  expect(await screen.findByText('Test User')).toBeInTheDocument();
});

Line range hint 1605-1628: Remove debug statement and improve error handling.

The test includes an unnecessary screen.debug() and could handle errors better.

 test('sidebar', async () => {
   render(
     <MockedProvider addTypename={false} mocks={mock}>
       <BrowserRouter>
         <Provider store={store}>
           <I18nextProvider i18n={i18nForTest}>
             <Chat />
           </I18nextProvider>
         </Provider>
       </BrowserRouter>
     </MockedProvider>,
   );
-  screen.debug();
   await waitFor(async () => {
     const closeMenuBtn = await screen.findByTestId('closeMenu');
     expect(closeMenuBtn).toBeInTheDocument();
-    if (closeMenuBtn) {
-      closeMenuBtn.click();
-    } else {
-      throw new Error('Close menu button not found');
-    }
+    fireEvent.click(closeMenuBtn);
+    expect(screen.queryByTestId('menu')).not.toBeInTheDocument();
   });
 });

Line range hint 1629-1654: Enhance responsive behavior testing.

The responsive test should verify more aspects of the mobile view behavior.

 test('Testing sidebar when the screen size is less than or equal to 820px', async () => {
   resizeWindow(800);
   
   render(/* ... */);
   
   await waitFor(() => {
     expect(screen.getByText('My Organizations')).toBeInTheDocument();
     expect(screen.getByText('Talawa User Portal')).toBeInTheDocument();
   });
   
   const openMenuBtn = await screen.findByTestId('openMenu');
   expect(openMenuBtn).toBeInTheDocument();
   fireEvent.click(openMenuBtn);
   
   const closeMenuBtn = await screen.findByTestId('closeMenu');
   expect(closeMenuBtn).toBeInTheDocument();
+  
+  // Verify menu is visible
+  expect(screen.getByTestId('menu')).toBeInTheDocument();
+  
+  // Verify menu closes
+  fireEvent.click(closeMenuBtn);
+  expect(screen.queryByTestId('menu')).not.toBeInTheDocument();
+  
+  // Verify content adjusts to mobile view
+  expect(screen.getByTestId('chatContainer')).toHaveStyle({ width: '100%' });
 });

Line range hint 1-1654: Overall successful migration to Vitest with room for improvement.

The migration from Jest to Vitest has been completed successfully. Consider these improvements for better test quality:

  1. Extract common test utilities
  2. Add more comprehensive assertions
  3. Improve error handling
  4. Enhance responsive testing
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 316c3cb and 1cf1d9b.

⛔ Files ignored due to path filters (1)
  • package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (3)
  • package.json (1 hunks)
  • src/screens/UserPortal/Chat/Chat.spec.tsx (7 hunks)
  • vitest.config.ts (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • package.json
🔇 Additional comments (2)
vitest.config.ts (1)

5-5: LGTM! SVG plugin configuration is correct.

The addition of vite-plugin-svgr and its configuration is properly implemented for handling SVG imports in the test environment.

Also applies to: 10-10

src/screens/UserPortal/Chat/Chat.spec.tsx (1)

1489-1499: LGTM! Good practice consolidating mock data.

Consolidating mock data outside of tests improves reusability and maintainability.

coderabbitai[bot]
coderabbitai bot previously approved these changes Dec 12, 2024
Signed-off-by: NishantSinghhhhh <[email protected]>
@NishantSinghhhhh
Copy link
Author

NishantSinghhhhh commented Dec 12, 2024

@palisadoes , I have to add 1 plugin named vite-plugin-svg because vite was not able to read the svgs and tests were failing

@Cioppolo14
Copy link

@NishantSinghhhhh Please fix the failing tests.

@NishantSinghhhhh
Copy link
Author

NishantSinghhhhh commented Dec 13, 2024

@Cioppolo14

1 → PR Workflow / Checks if sensitive files have been changed without authorization:
For this test, I have added a dependency named vite-plugin-svg. Without this dependency, the tests in chat.spec.tsx were failing. Currently, Talawa Admin does not have any existing dependency to render SVGs in tests for vitest. Adding this dependency is essential to resolve the issue.

2 → PR Workflow / Test Application (pull_request):
I am trying to fix this currently and will commit the changes

Copy link

@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

🧹 Outside diff range and nitpick comments (4)
src/screens/UserPortal/Chat/Chat.spec.tsx (4)

25-92: Excellent documentation structure!

The comprehensive documentation greatly improves maintainability. Consider adding a section about test coverage metrics to help track testing completeness.


94-105: Consider enhancing type safety in helper functions.

While the implementation is correct, consider adding runtime validation for the width parameter in resizeWindow.

 const resizeWindow = (width: number): void => {
+  if (width <= 0) {
+    throw new Error('Window width must be positive');
+  }
   window.innerWidth = width;
   fireEvent(window, new Event('resize'));
 };

1558-1568: Consider adding type definitions for mock data.

While consolidating mocks outside tests improves reusability, adding type definitions would enhance maintainability and catch potential issues early.

interface MockData {
  request: {
    query: any;
    variables: Record<string, any>;
  };
  result: {
    data: Record<string, any>;
  };
}

const mock: MockData[] = [
  ...USER_JOINED_ORG_MOCK,
  ...GROUP_CHAT_BY_ID_QUERY_MOCK,
  // ... rest of the mocks
];

Line range hint 1576-1723: Clean up debugging code and improve test reliability.

Several improvements needed:

  1. Remove screen.debug() call in the sidebar test
  2. Consider extracting magic numbers (like wait times) to named constants
  3. Add retry logic for potentially flaky tests
-  screen.debug();
   await waitFor(async () => {
// Add at the top of the file
const TEST_CONSTANTS = {
  ANIMATION_WAIT: 100,
  MOBILE_BREAKPOINT: 820,
  MOBILE_TEST_WIDTH: 800
} as const;

// Update test
test('Testing sidebar when the screen size is less than or equal to 820px', async () => {
  resizeWindow(TEST_CONSTANTS.MOBILE_TEST_WIDTH);
  
  // ... rest of the test
});
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1cf1d9b and 8486b2a.

📒 Files selected for processing (1)
  • src/screens/UserPortal/Chat/Chat.spec.tsx (7 hunks)
🔇 Additional comments (2)
src/screens/UserPortal/Chat/Chat.spec.tsx (2)

1-24: LGTM! Import statements are well-organized.

The migration to Vitest is properly reflected in the imports, with all necessary testing utilities included.


Line range hint 1542-1723: Verify test coverage after migration.

Ensure that the migration to Vitest hasn't reduced test coverage.

✅ Verification successful

Based on the gathered information, I can now provide the final response:

Test coverage is sufficient after Vitest migration

The test suite adequately covers the critical paths:

  • Window resize behavior is properly tested with the resizeWindow helper function and specific mobile view test case
  • Chat data handling is covered through comprehensive mock data (CHATS_LIST_MOCK)
  • Both conditional branches identified (window.innerWidth <= 820 and chatsListData check) are exercised in tests
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check if there are any untested code paths in the Chat component

# Look for potential untested paths in the Chat component
ast-grep --pattern 'if ($_) {
  $$$
}' src/screens/UserPortal/Chat/Chat.tsx

# Look for event handlers that might need testing
ast-grep --pattern 'onClick={$_}' src/screens/UserPortal/Chat/Chat.tsx

Length of output: 545


Script:

#!/bin/bash
# Let's check the test coverage by examining if the identified conditions are tested

# Check test file for window resize tests
rg -A 5 "window\.innerWidth" src/screens/UserPortal/Chat/Chat.spec.tsx

# Check test file for chatsListData handling
rg -A 5 "chatsListData" src/screens/UserPortal/Chat/Chat.spec.tsx

# Check for any mock data related to chat list
rg "CHATS_LIST_MOCK" src/screens/UserPortal/Chat/Chat.spec.tsx

Length of output: 417


Script:

#!/bin/bash
# Let's examine the test coverage more thoroughly

# Check the actual test implementation for window resize
rg -B 5 -A 10 "resizeWindow" src/screens/UserPortal/Chat/Chat.spec.tsx

# Check the mock data structure for chats
rg -A 10 "const CHATS_LIST_MOCK = \[" --type ts

# Look for any assertions related to chat list rendering
rg "expect.*chat.*toBeInTheDocument" src/screens/UserPortal/Chat/Chat.spec.tsx

Length of output: 4602

src/screens/UserPortal/Chat/Chat.spec.tsx Outdated Show resolved Hide resolved
@palisadoes
Copy link
Contributor

Please fix the failing Test Application test.

Copy link

@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

🧹 Outside diff range and nitpick comments (3)
src/screens/UserPortal/Chat/Chat.spec.tsx (3)

1572-1581: Consider enhancing test cleanup.

While the current cleanup is good, consider adding these additional cleanup steps for more robust tests:

 beforeEach(() => {
   setItem('userId', '1');
   vi.clearAllMocks();
   localStorage.clear();
   vi.resetModules();
 });

 afterEach(() => {
   localStorage.clear();
+  // Reset any timers
+  vi.clearAllTimers();
+  // Reset any pending promises
+  vi.clearAllMocks();
+  // Reset document body
+  document.body.innerHTML = '';
 });

Line range hint 1583-1597: Add assertions to the render test.

The screen render test should verify the presence of key UI elements.

 test('Screen should be rendered properly', async () => {
   render(
     <MockedProvider addTypename={false} mocks={mock}>
       <BrowserRouter>
         <Provider store={store}>
           <I18nextProvider i18n={i18nForTest}>
             <Chat />
           </I18nextProvider>
         </Provider>
       </BrowserRouter>
     </MockedProvider>,
   );
   await wait();
+  // Verify key UI elements
+  expect(screen.getByText('Messages')).toBeInTheDocument();
+  expect(screen.getByTestId('contactCardContainer')).toBeInTheDocument();
+  expect(screen.getByTestId('dropdown')).toBeInTheDocument();
 });

Line range hint 1705-1730: Enhance mobile view test assertions.

The mobile view test should verify more UI states and interactions.

 test('Testing sidebar when the screen size is less than or equal to 820px', async () => {
   resizeWindow(800);

   render(
     <MockedProvider addTypename={false} mocks={mock}>
       <BrowserRouter>
         <Provider store={store}>
           <I18nextProvider i18n={i18nForTest}>
             <Chat />
           </I18nextProvider>
         </Provider>
       </BrowserRouter>
     </MockedProvider>,
   );

   await waitFor(() => {
     expect(screen.getByText('My Organizations')).toBeInTheDocument();
     expect(screen.getByText('Talawa User Portal')).toBeInTheDocument();
   });

   const openMenuBtn = await screen.findByTestId('openMenu');
   expect(openMenuBtn).toBeInTheDocument();
   fireEvent.click(openMenuBtn);

   const closeMenuBtn = await screen.findByTestId('closeMenu');
   expect(closeMenuBtn).toBeInTheDocument();
+  
+  // Verify sidebar state after opening
+  expect(screen.getByTestId('sidebar')).toHaveClass('open');
+  
+  // Close sidebar
+  fireEvent.click(closeMenuBtn);
+  
+  // Verify sidebar state after closing
+  expect(screen.getByTestId('sidebar')).not.toHaveClass('open');
+  expect(openMenuBtn).toBeInTheDocument();
 });
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8486b2a and 19722f0.

📒 Files selected for processing (2)
  • src/screens/UserPortal/Chat/Chat.spec.tsx (7 hunks)
  • vitest.config.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • vitest.config.ts
🔇 Additional comments (2)
src/screens/UserPortal/Chat/Chat.spec.tsx (2)

1548-1557: LGTM: Proper mock implementation of window.matchMedia.

The mock implementation correctly uses Vitest's vi.fn() and includes all necessary event listeners for testing media queries.


98-109: LGTM: Well-implemented helper functions.

Both resizeWindow and wait helpers are properly implemented:

  • resizeWindow correctly simulates window resizing
  • wait properly wraps setTimeout in act for handling async operations

coderabbitai[bot]
coderabbitai bot previously approved these changes Dec 13, 2024
@NishantSinghhhhh
Copy link
Author

NishantSinghhhhh commented Dec 13, 2024

@palisadoes

Screencast.from.2024-12-14.02-09-13.webm

I've made several changes to ensure that the tests pass, but I haven't modified any Jest test files myself. Despite this, the [PR Workflow / Test Application (pull_request)] test is still failing. This could possibly be due to a recent PR in the develop-postgres branch, though I'm not entirely sure. Can you help me resolve this issue?"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants