File size: 334 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
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')
})
})
|