mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import setupMiniApp from '../utils/setupMiniApp'
|
|
import { useAppRoot } from '../../src/hooks/template/useAppRoot'
|
|
|
|
describe('useAppRoot', async () => {
|
|
await setupMiniApp()
|
|
|
|
const { setRootRoute } = useAppRoot()
|
|
|
|
it(`should return '/test' and 'test'`, () => {
|
|
setRootRoute({
|
|
path: '/test',
|
|
name: 'test',
|
|
})
|
|
|
|
const { getRootPath, getRootName } = useAppRoot()
|
|
|
|
expect(getRootPath.value).toBe('/test')
|
|
expect(getRootName.value).toBe('test')
|
|
})
|
|
|
|
it(`should be returned a object like: {path: /test2, name: test2}`, () => {
|
|
const baseRootRoute = {
|
|
path: '/test2',
|
|
name: 'test2',
|
|
}
|
|
|
|
setRootRoute(baseRootRoute)
|
|
|
|
const { getRootRoute } = useAppRoot()
|
|
|
|
expect(getRootRoute.value).toEqual(baseRootRoute)
|
|
})
|
|
|
|
it('should update root route when setRootRoute is called', () => {
|
|
const baseRootRoute = {
|
|
path: '/test3',
|
|
name: 'test3',
|
|
}
|
|
|
|
setRootRoute({
|
|
path: '/test3',
|
|
name: 'test3',
|
|
})
|
|
|
|
const { getRootPath, getRootName, getRootRoute } = useAppRoot()
|
|
|
|
expect(getRootPath.value).toBe('/test3')
|
|
expect(getRootName.value).toBe('test3')
|
|
expect(getRootRoute.value).toEqual(baseRootRoute)
|
|
})
|
|
})
|