Module

x/jotai/docs/guides/testing.mdx

👻 Primitive and flexible state management for React
Go to Latest
File
---title: Testingdescription: How to test your code using Jotainav: 3.08---
We echo the [guiding principles of Testing library](https://testing-library.com/docs/guiding-principles/):
- "The more your tests resemble the way your software is used, the more confidence they can give you."We encourage you to write tests, like the user would interact with your atoms and components,therefore treating Jotai as an implementation detail.
Here's an example using [React testing library](https://github.com/testing-library/react-testing-library):
`Counter.tsx`:
```jsximport { atom, useAtom } from 'jotai'
const countAtom = atom(0)
export function Counter() { const [count, setCount] = useAtom(countAtom) return ( <h1> <p>{count}</p> <button onClick={() => setCount((c) => c + 1)}>one up</button> </h1> )}```
`Counter.test.ts`:
```jsximport React from 'react'import { render, screen, fireEvent } from '@testing-library/react'import { Counter } from './Counter'
test('should increment counter', () => { // Arrange render(<Counter />) const counter = screen.getByText('0') const incrementButton = screen.getByText('one up') // Act fireEvent.click(incrementButton) // Assert expect(counter.textContent).toEqual('1')})```
## Injected Values
You may want to inject arbitrary values to your atom before starting some tests.Maybe the counter should be limmited to 100. Let's see how to test that it doesn't increase after reaching 100.In order to do that, simply use a [Provider](..api/core#provider), and export your atom to be filled-in.
```tsximport React from 'react'import { render, screen, fireEvent } from '@testing-library/react'import { countAtom, Counter } from './Counter'import { Provider } from 'jotai'
const CounterProvider = () => { return ( <Provider initialValues={[[countAtom, 100]]}> <Counter /> </Provider> )}
test('should not increment on max (100)', () => { render(<CounterProvider />) const counter = screen.getByText('100') const incrementButton = screen.getByText('one up') fireEvent.click(incrementButton) expect(counter.textContent).toEqual('100')})```
## Custom hooks
If you have complex atoms, sometimes you want to test them in isolation.
For that, you can use [React Hooks Testing Library](https://github.com/testing-library/react-hooks-testing-library).Here's an example below:
`countAtom.ts`:
```tsimport { useAtom } from 'jotai'import { atomWithReducer } from 'jotai/utils'
const reducer = (state: number, action?: 'INCREASE' | 'DECREASE') => { switch (action) { case 'INCREASE': return state + 1 case 'DECREASE': return state - 1 case undefined: return state }}export const countAtom = atomWithReducer(0, reducer)```
`countAtom.test.ts`:
```tsimport { renderHook, act } from '@testing-library/react-hooks'import { useAtom } from 'jotai'import { countAtom } from './countAtom'
test('should increment counter', () => { const { result } = renderHook(() => useAtom(countAtom)) act(() => { result.current[1]('INCREASE') }) expect(result.current[0]).toBe(1)})```
## Example with React-Native
Of course, you can test React-Native components too the same way, with or without `Provider`.
```tsximport React from 'react'import { render, fireEvent } from '@testing-library/react-native'import { Counter } from './counter'
test('should increment counter', () => { // Arrange const { getByText } = render(<Counter />) const counter = getByText('0') const incrementButton = getByText('one up') // Act fireEvent.press(incrementButton) // Assert expect(counter.props.children.toString()).toEqual('1')})```