Skip to content

Commit 7fcff7c

Browse files
committed
doc: Flip the HOC/manual order
1 parent 4c7d325 commit 7fcff7c

File tree

1 file changed

+22
-26
lines changed

1 file changed

+22
-26
lines changed

packages/docs/content/docs/testing.mdx

+22-26
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ description: Some tips on testing components that use `nuqs`
44
---
55

66
Since nuqs 2, you can unit-test components that use `useQueryState(s){:ts}` hooks
7-
by wrapping your rendered component in a `NuqsTestingAdapter{:ts}`.
7+
by wrapping your rendered component in a `NuqsTestingAdapter{:ts}`, or using
8+
the `withNuqsTestingAdapter{:ts}` higher-order component.
89

910
## With Vitest
1011

@@ -14,10 +15,10 @@ a counter:
1415
<Tabs items={['Vitest v1', 'Vitest v2']}>
1516

1617
```tsx title="counter-button.test.tsx" tab="Vitest v1"
17-
// [!code word:NuqsTestingAdapter]
18+
// [!code word:withNuqsTestingAdapter]
1819
import { render, screen } from '@testing-library/react'
1920
import userEvent from '@testing-library/user-event'
20-
import { NuqsTestingAdapter, type UrlUpdateEvent } from 'nuqs/adapters/testing'
21+
import { withNuqsTestingAdapter, type UrlUpdateEvent } from 'nuqs/adapters/testing'
2122
import { describe, expect, it, vi } from 'vitest'
2223
import { CounterButton } from './counter-button'
2324

@@ -26,11 +27,7 @@ it('should increment the count when clicked', async () => {
2627
const onUrlUpdate = vi.fn<[UrlUpdateEvent]>()
2728
render(<CounterButton />, {
2829
// 1. Setup the test by passing initial search params / querystring:
29-
wrapper: ({ children }) => (
30-
<NuqsTestingAdapter searchParams="?count=42" onUrlUpdate={onUrlUpdate}>
31-
{children}
32-
</NuqsTestingAdapter>
33-
)
30+
wrapper: withNuqsTestingAdapter({ searchParams: '?count=42', onUrlUpdate })
3431
})
3532
// 2. Act
3633
const button = screen.getByRole('button')
@@ -46,10 +43,10 @@ it('should increment the count when clicked', async () => {
4643
```
4744

4845
```tsx title="counter-button.test.tsx" tab="Vitest v2"
49-
// [!code word:NuqsTestingAdapter]
46+
// [!code word:withNuqsTestingAdapter]
5047
import { render, screen } from '@testing-library/react'
5148
import userEvent from '@testing-library/user-event'
52-
import { NuqsTestingAdapter, type OnUrlUpdateFunction } from 'nuqs/adapters/testing'
49+
import { withNuqsTestingAdapter, type OnUrlUpdateFunction } from 'nuqs/adapters/testing'
5350
import { describe, expect, it, vi } from 'vitest'
5451
import { CounterButton } from './counter-button'
5552

@@ -58,11 +55,7 @@ it('should increment the count when clicked', async () => {
5855
const onUrlUpdate = vi.fn<OnUrlUpdateFunction>()
5956
render(<CounterButton />, {
6057
// 1. Setup the test by passing initial search params / querystring:
61-
wrapper: ({ children }) => (
62-
<NuqsTestingAdapter searchParams="?count=42" onUrlUpdate={onUrlUpdate}>
63-
{children}
64-
</NuqsTestingAdapter>
65-
)
58+
wrapper: withNuqsTestingAdapter({ searchParams: '?count=42', onUrlUpdate })
6659
})
6760
// 2. Act
6861
const button = screen.getByRole('button')
@@ -113,19 +106,22 @@ const config: Config = {
113106
Adapt accordingly for Windows with [`cross-env`](https://www.npmjs.com/package/cross-env).
114107
</Callout>
115108

116-
## Higher-order component
109+
## NuqsTestingAdapter
117110

118-
Creating a wrapper component to pass props to the `NuqsTestingAdapter{:ts}`
119-
can be verbose as your test suite grows.
111+
The `withNuqsTestingAdapter{:ts}` function is a higher-order component that
112+
wraps your component with a `NuqsTestingAdapter{:ts}`, but you can also use
113+
it directly.
120114

121-
You can use the `withNuqsTestingAdapter{:ts}` function to pass the right props,
122-
and it will return a wrapper component:
115+
It takes the following props:
123116

124-
```tsx
125-
// [!code word:withNuqsTestingAdapter]
126-
import { withNuqsTestingAdapter } from 'nuqs/adapters/testing'
117+
- `searchParams`: The initial search params to use for the test. These can be a
118+
query string, a `URLSearchParams` object or a record object with string values.
127119

128-
render(<CounterButton />, {
129-
wrapper: withNuqsTestingAdapter({ searchParams: '?count=42', onUrlUpdate })
130-
})
120+
```tsx
121+
<NuqsTestingAdapter searchParams="?q=hello&limit=10">
122+
<NuqsTestingAdapter searchParams={new URLSearchParams("?q=hello&limit=10")}>
123+
<NuqsTestingAdapter searchParams={{
124+
q: 'hello',
125+
limit: '10' // Values are serialized strings
126+
}}>
131127
```

0 commit comments

Comments
 (0)