next.js/packages/next/src/shared/lib/router/utils/app-paths.test.ts
app-paths.test.ts11 lines334 B
import { normalizeRscURL } from './app-paths'

describe('normalizeRscPath', () => {
  it('should normalize url with .rsc', () => {
    expect(normalizeRscURL('/test.rsc')).toBe('/test')
  })
  it('should normalize url with .rsc and searchparams', () => {
    expect(normalizeRscURL('/test.rsc?abc=def')).toBe('/test?abc=def')
  })
})
Quest for Codev2.0.0
/
SIGN IN