npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-component-test-suite

v1.1.1

Published

A TypeScript library for defining consistent test suites for React function components with Jest or Vitest, by applying the name of the component to the title of the test suite.

Readme

React Component Test Suite

A TypeScript library for defining consistent test suites for React function components by automatically naming test suites based on component names. Compatible with jest, vitest, or any testing package that uses global describe() and test() blocks.

Features

  • 🎯 Automatic suite naming - Test suites named after your components
  • 🔄 Multiple test scenarios - Support for multiple test scenarios per component
  • ⏱️ Lifecycle hooks - beforeRender and afterRender hooks (sync or async)
  • 🧪 Test framework agnostic - Works with Jest, Vitest, or any framework using describe/test
  • 📝 Full TypeScript support - Complete type safety with advanced inference
  • 🛠️ Extensible - Build custom test suite builders for your use cases

Installation

npm install react-component-test-suite

Peer Dependencies

This library requires:

  • react
  • @testing-library/react
  • A test framework with describe and test (e.g., Jest or Vitest)

Examples

Single Test

import { render } from '@testing-library/react'
import { componentTestSuite } from 'react-component-test-suite'

const MyComponent = () => <div>Hello World</div>

// Create a test suite named "MyComponent" with a single render test
componentTestSuite(<MyComponent/>, {
  testTitle: 'renders correctly',
  renderFunction: render,
})
 ----- Test output -----
✓ MyComponent
    ✓ renders correctly

Multiple Tests

// Create a test suite named "MyComponent" with multiple tests
componentTestSuite(
  <MyComponent />,
  {
    testTitle: 'renders correctly',
    renderFunction: render,
  },
  { testTitleSuffix: 'default props' },
  {
    testTitleSuffix: 'with prop value 1',
    Component: <MyComponent customProp="1" />,
  },
  {
    testTitleSuffix: 'with prop value 2',
    Component: <MyComponent customProp="2" />,
  },
  {
    testTitleSuffix: 'with setup/teardown',
    Component: <MyComponent  />,
    beforeRender: async () => await setupDatabase(),
    afterRender: async () => await cleanupDatabase()
  }
)
 ----- Test output -----
✓ MyComponent (4)
   ✓ renders correctly - default props
   ✓ renders correctly - with prop value 1
   ✓ renders correctly - with prop value 2
   ✓ renders correctly - with setup/teardown

API Reference

componentTestSuite

Creates a describe block with one or more tests for a React component.

componentTestSuite(
  Component: AnyFunctionComponent,
  options: {
    testTitle: string
    renderFunction: (ui: React.ReactElement) => void // e.g. `render` from `@testing-library/react` 
    suiteFn?: typeof describe.skip | typeof describe.only // for test dev. defaults to normal `describe`.
    insideSuite?: () => void
    Wrapper?: React.FC<{ children: React.ReactNode }>
  },
  ...tests: TestList
)

Options

  • testTitle (required): Base title for each test. Test suffixes will be appended to this.
  • renderFunction (required): Function to render the component (e.g., render from @testing-library/react).
  • suiteFn (optional): Use describe.skip or describe.only for debugging. Default: describe.
  • insideSuite (optional): Callback for registering lifecycle hooks (beforeEach, afterEach, etc.).
  • Wrapper (optional): Component to wrap the test component (e.g., providers). Default: React.Fragment.

Test Configuration (TestList)

Each test can include:

  • testTitleSuffix (required for 2nd+ tests to differentiate them): Appended to the base testTitle.
  • Component (required for 2nd+ tests): The component to test. First test uses the main Component arg. An error is thrown if subsequent components don't match.
  • beforeRender (optional): Sync or async function called before rendering.
  • afterRender (optional): Sync or async function called after rendering.

More Examples

With Custom Wrapper

const ThemeWrapper = ({ children }) => (
  <ThemeProvider theme={testTheme}>
    {children}
  </ThemeProvider>
)

componentTestSuite(MyComponent, {
  testTitle: 'renders with theme',
  renderFunction: render,
  Wrapper: ThemeWrapper,
}, ...tests)

Debugging with describe.only

componentTestSuite(MyComponent, {
  testTitle: 'renders',
  renderFunction: render,
  suiteFn: describe.only, // Run only this suite
}, ...tests)

Custom Test Suite Builder

See APIs below this section for helper functions and types

import { componentTestSuite, mapTestList, type AnyFunctionComponent } from 'react-component-test-suite'

type AccessibilityTest = {
  testTitleSuffix: string
  ariaLabel: string
}

const accessibilityTests = (
  Component: AnyFunctionComponent,
  tests: TestList<AccessibilityTest>
) => {
  componentTestSuite(
    Component,
    {
      testTitle: 'meets accessibility requirements',
      renderFunction: render,
    },
    ...mapTestList(tests, (test) => ({
      afterRender: async () => {
        const element = screen.getByLabelText(test.ariaLabel)
        expect(element).toBeInTheDocument()
      }
    }))
  )
}

...
accessibilityTests(<MyComponent/>)
accessibilityTests(<MyOtherComponent/>)
accessibilityTests(<AnotherComponent/>)

import { componentTestSuite, mapTestList, resolveTestSuiteArgs, type AnyFunctionComponent } from 'react-component-test-suite'

type SmokeTestArgs = TestSuiteArgs<{
  checks?: () => Promisable<unknown>
}>

const smokeTest = (
  Component: AnyFunctionComponent,
  renderFunction: (ui: React.ReactElement) => void,
  ...args: SmokeTestArgs
) => {
  const { overallOptions, tests } = resolveTestSuiteArgs(args)
  componentTestSuite(
    Component,
    {
      ...overallOptions,
      renderFunction,
      testTitle: 'should render the component',
    },
    ...mapTestList(tests, (t) => ({ afterRender: t.checks }))
  )
}

...
smokeTest(<MyComponent/>)
smokeTest(<MyOtherComponent/>)
smokeTest(<AnotherComponent/>)

TypeScript Support

The library provides full type safety with advanced type inference.

TestList

Used to create a custom test list critiria by adding custom props to the standard props required for each test:

import type { TestList } from 'react-component-test-suite'

// Type-safe test list with custom properties
const tests: TestList<{ customProp: string }> = [
  { testTitleSuffix: 'test 1', customProp: 'value 1' },
  { testTitleSuffix: 'test 2', customProp: 'value 2' }
]

Utility Functions

resolveTestSuiteArgs

Normalizes flexible test suite arguments into a consistent shape.

const { overallOptions, tests } = resolveTestSuiteArgs([
  { suiteFn: describe.skip },
  [{ testTitleSuffix: 'test 1' }]
])

mapTestList

Helper to transform custom test lists into the core TestList format.

const customTests: TestList<{ customProp: string }> = [
  { testTitleSuffix: 'test 1', customProp: 'value1' }
]

const mappedTests: TestList = mapTestList(customTests, (test) => ({
  afterRender: () => console.log(test.customProp)
}))

License

MIT

Contributing

Contributions are welcome! Please open an issue or submit a pull request.