mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
18 lines
368 B
TypeScript
18 lines
368 B
TypeScript
import { equalRouterPath } from '../../src/utils/basic'
|
|
|
|
describe('equalRouterPath', () => {
|
|
it('compare paths with parameters', () => {
|
|
const p1 = '/a?b=1'
|
|
const p2 = '/a?b=2'
|
|
|
|
expect(equalRouterPath(p1, p2)).toBe(true)
|
|
})
|
|
|
|
it('compare paths', () => {
|
|
const p1 = '/a'
|
|
const p2 = '/a/'
|
|
|
|
expect(equalRouterPath(p1, p2)).toBe(true)
|
|
})
|
|
})
|