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 🙏

© 2024 – Pkg Stats / Ryan Hefner

hooks-test-util

v1.1.1

Published

> make React hooks unit test easier to write

Downloads

10

Readme

hooks-test-util

make React hooks unit test easier to write

NPM Build Status license coverage

Install

// use yarn
yarn add hooks-test-util -D
// use npm
npm install hooks-test-util --dev

Doc

render

  • render(callback, options) => { container, unmount, rerender }: render method to mount a component which include your custom hook

  • container: same as react-testing-library container, add hook field on it, every time visit hook instance should use container.hook!!!

  • unmount(): method to unmount component

  • rerender(options): method to rerender component

callback

  • () => hook instance: return your custom hook

Options

  • render({ hook }) : ReactNode: render method to render dom to hook component
  • parent : React.ComponentType: parent component, usually used for context test

Demo

useState Test

hook

const textHook = function(text) {
  const [state, setState] = useState({ text })
  return {
    text: state.text,
    update(text) {
      setState({text})
    }
  }
}

test file

import render, { act } from 'hooks-test-util'

it('should get current hook value', () => {
  const { container } = render(
    () => textHook('hello')
  )
  expect(container.hook.text).toEqual('hello')
  
  act(() => {
    container.hook.update('world')
  })
  expect(container.hook.text).toEqual('world')
})

useContext Test

hook

const ThemeContext = React.createContext({
  color: 'red'
})

const testHook = function() {
  const value = useContext(ThemeContext)
  return value
}

test file

import render, { act } from 'hooks-test-util'

it('should get current context value when provider override value', () => {
    const newTheme = {color: 'blue'}
    
    const { container } = render(
      () => testHook()
    , {
        parent: function(props) {
          return (
            <ThemeContext.Provider value={newTheme}>
              {props.children}
            </ThemeContext.Provider>
          )
        }
    })
    
    expect(container.hook).toEqual(newTheme)
  })

demo:
https://github.com/ariesjia/hooks-test-util/blob/master/src/tests/context.test.tsx

useEffect Test

demo:
https://github.com/ariesjia/hooks-test-util/blob/master/src/tests/effort.test.tsx

test with dom

test file

import render, { act } from '../index'
import { getByTestId } from 'react-testing-library'
it('should render state value on dome', () => {
  const { container } = render(
    () => textHook('hello'),
    {
      render({ hook }) {
        const { text, update } = hook
        return (
          <div>
            <span data-testid="text">{text}</span>
          </div>
        )
      }
    }
  )
  const text = getByTestId(container, 'text')
  expect(text.textContent).toEqual('hello')
})