Skip to content

Commit c61b06d

Browse files
committed
test: Add links in nuq+ e2e pages
1 parent 3812dcc commit c61b06d

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

packages/e2e/src/app/app/useQueryStates/page.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use client'
22

3+
import Link from 'next/link'
34
import {
45
parseAsBoolean,
56
parseAsFloat,
@@ -39,6 +40,10 @@ const IntegrationPage = () => {
3940
>
4041
Clear
4142
</button>
43+
<nav>
44+
<Link href="?string=Hello&int=42">Link A</Link>
45+
<Link href="?string=World&int=47">Link B</Link>
46+
</nav>
4247
<p id="json">{JSON.stringify(state)}</p>
4348
<p id="string">{state.string}</p>
4449
<p id="int">{state.int}</p>

packages/e2e/src/pages/pages/useQueryStates/index.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Link from 'next/link'
12
import { queryTypes, useQueryStates } from 'nuqs'
23
import { HydrationMarker } from '../../../components/hydration-marker'
34

@@ -36,6 +37,10 @@ const IntegrationPage = () => {
3637
>
3738
Clear
3839
</button>
40+
<nav>
41+
<Link href="?string=Hello&int=42">Link A</Link>
42+
<Link href="?string=World&int=47">Link B</Link>
43+
</nav>
3944
<p id="json">{JSON.stringify(state)}</p>
4045
<p id="string">{state.string}</p>
4146
<p id="int">{state.int}</p>

0 commit comments

Comments
 (0)