test react RFC

creates a test suite in line with tldv standards for functional components

C
createflow
·May 2, 2026·
94 0 226
$7.99
Prompt
287 words

Your task is to construct a comprehensive test suite in [⟨TARGETLANGUAGE⟩ using Jest and the React Testing Library. The suite should focus on testing a specific React component and adhere to the following guidelines:

  1. Component Import: Always import the component you're testing directly from its root directory. This implies using '.' to refer to the current directory.

  2. Mocking Hooks: Use Jest for mocking hooks in your component. The provided sample code below demonstrates how to mock the useHistory hook from react-router.

  3. Element Selection: To select elements within your rendered component, utilize the screen object from the React Testing Library. Specifically, use the getByText method for textual elements. This is shown in the sample code.

  4. Event Triggering: For simulating user interactions, prefer the userEvent object from @testing-library/user-event over fireEvent.

  5. Component Rendering: Rather than using the regular render method, opt for a custom helper, { renderWithThemeAndQuery }, imported from 'utils/renderWithThemeAndQuery'.

  6. Structure of Test Suite: Your submission should include the entire test suite in one piece, not as separate instructions or steps. This suite should have at least one describe block containing multiple it or test blocks.

Here is a reference test code for your review:

import Button from '.';
import { screen } from '@testing-library/react'
import { renderWithThemeAndQuery } from 'utils/renderWithThemeAndQuery';
import userEvent from '@testing-library/user-event';
import { useHistory } from 'react-router-dom';

jest.mock('react-router-dom', () => ({
...jest.requireActual('react-router-dom'),
useHistory: jest.fn(),
}));

const mockUseHistory = useHistory as jest.Mock;
const mockPush = jest.fn();

describe('[Button Component]', () => {
    beforeEach(() => {
        jest.clearAllMocks();
        mockUseHistory.mockReturnValue({
            push: mockPush
        });
    });

    it('triggers correct action on click', () => {
        renderWithThemeAndQuery(<Button>Click me</Button>);
        const button = screen.getByText('Click me');
        userEvent.click(button);
        expect(mockPush).toHaveBeenCalled();
    });
});

The code to be test is the following:

⟨PROMPT⟩

This prompt contains variables shown as ⟨variable_name⟩. Replace them with your own values before using.

How to Use

Use this prompt by entering: Provide full functional component

Need help?

Connect with verified experts who can help you succeed.

Related Prompts

More prompts in Coding & Development

View All
Coding & Development
Universal

This Prompt Ads Sequential Function Calling To Models Other Than GPT 0613

This prompt ads sequential function calling to models other than GPT-0613

D
digitalmuse$2.99
39,910 89,588
Coding & Development
Universal

Create a personalized workout routine

Tailor a workout routine specifically designed for individual fitness goals

P
primequery$2.99
23,370 23,405
Coding & Development
Universal

GODMODE CHEATCODE

God Writes You a Letter Today. This is will help you find the perfect Bible Scripture that will guide you through a current problem you're facing.

S
signalcraft$3.99
13,574 13,622
Coding & Development
Universal

Creating a Personal Finance Tracker with [Technology/Tool]

Learn to create a personal finance tracker using [Technology/Tool]. Get code samples and budgeting tips.

F
focusqueryFree
376 385
Coding & Development
ChatGPT

Build an entire application using bubble.io with ChatGPT4

Build an entire app with bubble.io, assisted by chatGPT4, that knows bubble very well and is accurate 95% of the time. This prompt will help you maximize the quality of chatGPT assistance. Having detailed and step-by-step instructions is essential to progress fast with Bubble. This initial prompt will help you get started on a good basis. Follow it because I will make it even better.

P
promptframes$5.99
1,280 1,300
Coding & Development
Universal

Become LawyerGPT

Are you in a legal bind? This prompt can help you gain knowledge about how to handle your legal proceedings. DISCLAIMER: Please meet with a real lawyer to discuss your options.

P
promptbench$2.99
1,063 1,076