| 1234567891011121314151617181920212223242526272829303132 |
- import { render, screen, waitFor } from '@testing-library/react'
- import { expect, suite, test } from 'vitest'
- import { routerMock } from '../lib/route-mock'
- import { RouterComponent } from './router'
- suite('Router Mock', () => {
- test('Router mock works as expected', async () => {
- const comp = render(<RouterComponent />)
- expect(comp.container.textContent).toContain('path: /')
- expect(routerMock.pathname).toBe('/')
- })
- test('Clicking on link changes the path', async () => {
- const comp = render(<RouterComponent />)
- const link = screen.getByRole('link')
- link.click()
- waitFor(() => {
- expect(routerMock.pathname).toBe('/test')
- expect(comp.container.textContent).toContain('path: /test')
- })
- })
- test('Router mock is reset after each test', async () => {
- const comp = render(<RouterComponent />)
- expect(comp.container.textContent).toContain('path: /')
- expect(routerMock.pathname).toBe('/')
- })
- })
|