Skip to content

Commit c104c70

Browse files
committed
test: Add React Router Fog of War test
See #884.
1 parent d0c18e1 commit c104c70

File tree

13 files changed

+78
-0
lines changed

13 files changed

+78
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { testFogOfWar } from 'e2e-shared/specs/react-router/fog-of-war.cy'
2+
3+
testFogOfWar({
4+
path: '/fog-of-war'
5+
})

packages/e2e/react-router/v6/src/react-router.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ const router = createBrowserRouter(
4141
<Route path="form/useQueryStates" lazy={load(import('./routes/form.useQueryStates'))} />
4242
<Route path="referential-stability/useQueryState" lazy={load(import('./routes/referential-stability.useQueryState'))} />
4343
<Route path="referential-stability/useQueryStates" lazy={load(import('./routes/referential-stability.useQueryStates'))} />
44+
<Route path="fog-of-war" lazy={load(import('./routes/fog-of-war._index'))} />
45+
<Route path="fog-of-war/result" lazy={load(import('./routes/fog-of-war.result'))} />
4446

4547
<Route path="render-count/:hook/:shallow/:history/:startTransition/no-loader" lazy={load(import('./routes/render-count.$hook.$shallow.$history.$startTransition.no-loader'))} />
4648
<Route path="render-count/:hook/:shallow/:history/:startTransition/sync-loader" lazy={load(import('./routes/render-count.$hook.$shallow.$history.$startTransition.sync-loader'))} />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { FogOfWarStartPage } from 'e2e-shared/specs/react-router/fog-of-war'
2+
3+
export default function FogOfWarStart() {
4+
return <FogOfWarStartPage resultHref="/fog-of-war/result" />
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { FogOfWarResultPage } from 'e2e-shared/specs/react-router/fog-of-war'
2+
3+
export default FogOfWarResultPage

packages/e2e/react-router/v7/app/routes.ts

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ export default [
2424
route('/form/useQueryStates', './routes/form.useQueryStates.tsx'),
2525
route('/referential-stability/useQueryState', './routes/referential-stability.useQueryState.tsx'),
2626
route('/referential-stability/useQueryStates', './routes/referential-stability.useQueryStates.tsx'),
27+
route('/fog-of-war', './routes/fog-of-war._index.tsx'),
28+
route('/fog-of-war/result', './routes/fog-of-war.result.tsx'),
29+
2730
route('/render-count/:hook/:shallow/:history/:startTransition/no-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.no-loader.tsx'),
2831
route('/render-count/:hook/:shallow/:history/:startTransition/sync-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.sync-loader.tsx'),
2932
route('/render-count/:hook/:shallow/:history/:startTransition/async-loader', './routes/render-count.$hook.$shallow.$history.$startTransition.async-loader.tsx'),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { FogOfWarStartPage } from 'e2e-shared/specs/react-router/fog-of-war'
2+
3+
export default function FogOfWarStart() {
4+
return <FogOfWarStartPage resultHref="/fog-of-war/result" />
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { FogOfWarResultPage } from 'e2e-shared/specs/react-router/fog-of-war'
2+
3+
export default FogOfWarResultPage
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { testFogOfWar } from 'e2e-shared/specs/react-router/fog-of-war.cy'
2+
3+
testFogOfWar({
4+
path: '/fog-of-war'
5+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { FogOfWarStartPage } from 'e2e-shared/specs/react-router/fog-of-war'
2+
3+
export default function FogOfWarStart() {
4+
return <FogOfWarStartPage resultHref="/fog-of-war/result" />
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { FogOfWarResultPage } from 'e2e-shared/specs/react-router/fog-of-war'
2+
3+
export default FogOfWarResultPage
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { testFogOfWar } from 'e2e-shared/specs/react-router/fog-of-war.cy'
2+
3+
testFogOfWar({
4+
path: '/fog-of-war'
5+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { createTest } from '../../create-test'
2+
3+
export const testFogOfWar = createTest('Fog of War', ({ path }) => {
4+
it('should navigate to the result page', () => {
5+
cy.visit(path)
6+
cy.contains('#hydration-marker', 'hydrated').should('be.hidden')
7+
cy.get('#set').click()
8+
cy.get('#navigate').click()
9+
cy.location('pathname').should('eq', `${path}/result`)
10+
cy.get('#result').should('have.text', 'pass')
11+
})
12+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { useQueryState } from 'nuqs'
2+
import { useLink } from '../../components/link'
3+
4+
export function FogOfWarStartPage({ resultHref }: { resultHref: string }) {
5+
const [, setState] = useQueryState('test')
6+
// const [, setState] = useState('init')
7+
const Link = useLink()
8+
return (
9+
<>
10+
<button id="set" onClick={() => setState('pass')}>
11+
Set
12+
</button>
13+
<Link id="navigate" href={resultHref}>
14+
Navigate
15+
</Link>
16+
</>
17+
)
18+
}
19+
20+
export function FogOfWarResultPage() {
21+
return <div id="result">pass</div>
22+
}

0 commit comments

Comments
 (0)