mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-06 05:30:08 +00:00
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import { mount } from '@vue/test-utils'
|
|
import { createPinia } from 'pinia'
|
|
import PrimeVue from 'primevue/config'
|
|
import Tag from 'primevue/tag'
|
|
import Tooltip from 'primevue/tooltip'
|
|
import { describe, expect, it, vi } from 'vitest'
|
|
import { createI18n } from 'vue-i18n'
|
|
|
|
import SettingItem from './SettingItem.vue'
|
|
|
|
const i18n = createI18n({
|
|
legacy: false,
|
|
locale: 'en'
|
|
})
|
|
|
|
vi.mock('@/utils/formatUtil', () => ({
|
|
normalizeI18nKey: vi.fn()
|
|
}))
|
|
|
|
describe('SettingItem', () => {
|
|
const mountComponent = (props: any, options = {}): any => {
|
|
return mount(SettingItem, {
|
|
global: {
|
|
plugins: [PrimeVue, i18n, createPinia()],
|
|
components: {
|
|
Tag
|
|
},
|
|
directives: {
|
|
tooltip: Tooltip
|
|
},
|
|
stubs: {
|
|
'i-material-symbols:experiment-outline': true
|
|
}
|
|
},
|
|
props,
|
|
...options
|
|
})
|
|
}
|
|
|
|
it('translates options that use legacy type', () => {
|
|
const wrapper = mountComponent({
|
|
setting: {
|
|
id: 'Comfy.NodeInputConversionSubmenus',
|
|
name: 'Node Input Conversion Submenus',
|
|
type: 'combo',
|
|
value: 'Top',
|
|
options: () => ['Correctly Translated']
|
|
}
|
|
})
|
|
|
|
// Get the options property of the FormItem
|
|
const options = wrapper.vm.formItem.options
|
|
expect(options).toEqual([
|
|
{ text: 'Correctly Translated', value: 'Correctly Translated' }
|
|
])
|
|
})
|
|
|
|
it('handles tooltips with @ symbols without errors', () => {
|
|
const wrapper = mountComponent({
|
|
setting: {
|
|
id: 'TestSetting',
|
|
name: 'Test Setting',
|
|
type: 'boolean',
|
|
tooltip:
|
|
'This will load a larger version of @mtb/markdown-parser that bundles shiki'
|
|
}
|
|
})
|
|
|
|
// Should not throw an error and tooltip should be preserved as-is
|
|
expect(wrapper.vm.formItem.tooltip).toBe(
|
|
'This will load a larger version of @mtb/markdown-parser that bundles shiki'
|
|
)
|
|
})
|
|
})
|