mirror of
https://wget.la/https://github.com/Wxw-Gu/WechatExplorer
synced 2026-08-18 20:19:09 +08:00
14 lines
499 B
TypeScript
14 lines
499 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import { SETTINGS_NAVIGATION } from '../../src/renderer/src/features/settings/model/settingsNavigation'
|
|
|
|
describe('settings navigation', () => {
|
|
it('places text-to-speech under intelligent capabilities', () => {
|
|
const intelligent = SETTINGS_NAVIGATION.find((group) => group.label === '智能能力')
|
|
expect(intelligent?.items.map((item) => item.id)).toEqual([
|
|
'voice-recognition',
|
|
'text-to-speech',
|
|
'ai-model'
|
|
])
|
|
})
|
|
})
|