rsnext/test/unit/router-add-base-path.test.js

10 lines
278 B
JavaScript
Raw Normal View History

/* eslint-env jest */
import { addBasePath } from 'next/dist/next-server/lib/router/router'
describe('router addBasePath', () => {
it('should add basePath correctly when no basePath', () => {
const result = addBasePath('/hello')
expect(result).toBe('/hello')
})
})