Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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')
})
})