mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
16 lines
371 B
TypeScript
16 lines
371 B
TypeScript
import setupMiniApp from '../utils/setupMiniApp'
|
|
import { useVueRouter } from '../../src/hooks/web/useVueRouter'
|
|
|
|
describe('useVueRouter', async () => {
|
|
await setupMiniApp()
|
|
|
|
const { router } = useVueRouter()
|
|
|
|
it('should get push and replace methods', () => {
|
|
const { push, replace } = router
|
|
|
|
assert.isFunction(push)
|
|
assert.isFunction(replace)
|
|
})
|
|
})
|